Change docker example to deviantony (#48)
diff --git a/docker/.env b/docker/.env new file mode 100644 index 0000000..f5db319 --- /dev/null +++ b/docker/.env
@@ -0,0 +1,42 @@ +ELASTIC_VERSION=8.13.3 + +## Passwords for stack users +# + +# User 'elastic' (built-in) +# +# Superuser role, full access to cluster management and data indices. +# https://www.elastic.co/guide/en/elasticsearch/reference/current/built-in-users.html +ELASTIC_PASSWORD='changeme' + +# User 'logstash_internal' (custom) +# +# The user Logstash uses to connect and send data to Elasticsearch. +# https://www.elastic.co/guide/en/logstash/current/ls-security.html +LOGSTASH_INTERNAL_PASSWORD='changeme' + +# User 'kibana_system' (built-in) +# +# The user Kibana uses to connect and communicate with Elasticsearch. +# https://www.elastic.co/guide/en/elasticsearch/reference/current/built-in-users.html +KIBANA_SYSTEM_PASSWORD='changeme' + +# Users 'metricbeat_internal', 'filebeat_internal' and 'heartbeat_internal' (custom) +# +# The users Beats use to connect and send data to Elasticsearch. +# https://www.elastic.co/guide/en/beats/metricbeat/current/feature-roles.html +METRICBEAT_INTERNAL_PASSWORD='' +FILEBEAT_INTERNAL_PASSWORD='' +HEARTBEAT_INTERNAL_PASSWORD='' + +# User 'monitoring_internal' (custom) +# +# The user Metricbeat uses to collect monitoring data from stack components. +# https://www.elastic.co/guide/en/elasticsearch/reference/current/how-monitoring-works.html +MONITORING_INTERNAL_PASSWORD='' + +# User 'beats_system' (built-in) +# +# The user the Beats use when storing monitoring information in Elasticsearch. +# https://www.elastic.co/guide/en/elasticsearch/reference/current/built-in-users.html +BEATS_SYSTEM_PASSWORD=''
diff --git a/docker/README.md b/docker/README.md index 6500175..94a5a97 100644 --- a/docker/README.md +++ b/docker/README.md
@@ -1,243 +1,9 @@ -Building Apache Flagon Docker Containers -=================================== -*Last Tested: 04 MAR 2021 using Docker Engine v20.10.2, Compose v1.27.4, Machine v0.16.1* +# Example Docker deployment -## This single-node deployment is meant for demonstrations and very limited data collections with [Apache Flagon UserALE.js](https://github.com/apache/incubator-flagon-useralejs). +This directory contains a modified [elk stack](https://github.com/deviantony/docker-elk) along with an instrumented site +to demonstrate how to publish logs to elk. -Configurations in this repository can be used in complimentary version of appropriately scaled Elastic clusters. -Other [projects](https://github.com/deviantony/docker-elk) or service providers (e.g., AWS) provide excellent guidance for deploying production clusters. +Prerequisites: Docker engine is running -Prerequisites -------------- +Run `docker-compose up setup` to initialize and `docker-compose up` to run. -1. ``Docker`` can be found [here](http://docker.com). - Alternatively, you can build this deployment in [Docker Desktop](https://www.docker.com/products/docker-desktop) on either OSX or Windows OS. - -1. ``docker-compose`` can be found [here](https://docs.docker.com/compose/install/). Requires Docker Compose 1.23 and above. - If you install Docker through [Docker Desktop](https://www.docker.com/products/docker-desktop), docker-compose is included. - -1. ``docker-machine`` can be found [here](https://github.com/docker/machine/releases/). - Note that ``docker-machine`` was removed from [Docker Desktop](https://www.docker.com/products/docker-desktop) in ver 2.1.4. If you are running later versions you will need to install [Docker/Machine](https://github.com/docker/machine/releases/) manually. - Alternatively, you can use ``virtualbox`` or other methods of provisioning vms to run docker containers in. The instructions assume you are running ``docker-machine``. - -Single Node Example Container ------------------------------ - -The single-node deployment steps below will build a single-node logging server on a single -machine. This is suitable for demonstrations and very limited data collections. - -1. Create docker-machine instance. - **Note**: If using Docker Desktop bundle for OSX, there is a known bug in - the bundled version of virtualbox that will prevent a successful docker-machine creation. - Before installation, check that virtualbox version is at least 5.2. [``Reinstall virtualbox``](https://www.virtualbox.org/wiki/Downloads), if needed. - **Note**: If using Docker Desktop bundle for Windows 10, you will need to use ``Hyper-V`` instead of virtual box. Refer to [Docker's guide](https://docs.docker.com/machine/drivers/hyper-v/) on creating vms with Hyper-V. - ```bash - $ docker-machine create --virtualbox-memory 3072 --virtualbox-cpu-count 2 flagon - # Windows 10 users will need to use Hyper-V: - > docker-machine create -d hyperv --hyperv-virtual-switch "Primary Virtual Switch" --hyperv-memory 3072 --hyperv-cpu-count 2 flagon - ``` - -1. Before launching the Docker containers, ensure your ``vm_max_map_count`` - kernel setting is set to at least 262144. - Visit [``Running Elasticsearch in Production mode``](https://www.elastic.co/guide/en/elasticsearch/reference/5.5/docker.html#docker-cli-run-prod-mode) for OS specific instructions. - - ```bash - # Example for Linux systems - $ docker-machine ssh flagon sudo sysctl -w vm.max_map_count=262144 - ``` - -1. Create externel docker network to enable system monitoring. Only enable if running - Elasticsearch >6.5.4 configuration (single and cluster mode) - - ```bash - $ docker network create esnet - ``` - -1. Start Elasticsearch 6.6.2 or 6.8.2 (Recommended) Give Elasticsearch about 1-2 minutes to start before confirming its state. - - ```bash - #start Elasticsearch v6.6.2 (Deprecated) - $ docker-compose -f docker-compose-6.6.2.yml up -d elasticsearch - - or - - #start Elasticsearch v6.8.2 (Recommended) - $ docker-compose up -d elasticsearch - ``` - -1. Confirm state: - ```bash - # if Flagon vm is remote - $ docker-machine ssh flagon curl -XGET http://localhost:9200/_cluster/health?pretty - # if Flagon virtual machine is running on your local machine, no need for ssh, instead: - $ curl -XGET http://localhost:9200/_cluster/health?pretty - #output should look like this: - "cluster_name" : "Flagon", - "status" : "green", - "timed_out" : false, - "number_of_nodes" : 1, - "number_of_data_nodes" : 1, - "active_primary_shards" : 0, - "active_shards" : 0, - "relocating_shards" : 0, - "initializing_shards" : 0, - "unassigned_shards" : 0, - "delayed_unassigned_shards" : 0, - "number_of_pending_tasks" : 0, - "number_of_in_flight_fetch" : 0, - "task_max_waiting_in_queue_millis" : 0, - "active_shards_percent_as_number" : 100.0 - ``` - -1. Launch logging server. Give Logstash about 2 minutes to start before confirming - its state. - - ```bash - $ docker-compose up -d logstash - # if Flagon vm is remote - $ docker-machine ssh flagon curl -XGET http://localhost:8100 - # if Flagon virtual machine is running on your local machine, no need for ssh, instead: - $ curl -XGET http://localhost:8100 - #ouput should look like this: - ok - ``` - -1. Before Kibana can be used, we will need to generate some data. We provide an example instrumented website to assist. - - ```bash - $ docker-compose up -d site - # for remote users, forwards port to localhost - $ ssh docker@$(docker-machine ip flagon) -L 8080:localhost:8080 - ``` - - Visit `http://localhost:8080` and you will see Apache Flagon's home page. - - Note that the `userale` index uses dynamic mapping configurations for many fields. This means that if no valid data exists for - certain fields in the logs you collect at this step, Kibana won't know to map these fields to data types (e.g., string, text, - boolean, etc.). This can prevent certain dashboards and visualizations from appropriately displaying log aggregations. It is worth - 1-2 mins collecting some UserALE.js data in whichever way best emulates your use-case: from the same website, the [``UserALE.js example utilty``](https://github.com/apache/incubator-flagon-useralejs/tree/FLAGON-192/example), or the [``UserALE.js Web Extension``](https://github.com/apache/incubator-flagon-useralejs/tree/FLAGON-192/src/UserALEWebExtension). If you run into issues with data fields or visualizations, see the `Having Issues?` section below. - -1. Launch Kibana. Give Kibana about 2-5 minutes to start before accessing - `http://localhost:5601`. - - ```bash - $ docker-compose up -d kibana - # for remote users, forwards port to localhost - $ ssh docker@$(docker-machine ip flagon) -L 5601:localhost:5601 - ``` - -1. Register an index in Kibana to see the logs: - - Goto: Management -> Index Patterns and enter `userale` in the Index pattern box. - Choose `clientTime` in the drop down `Time Filter field name` field. Alternatively, to explore our "interval" logs, select `@timestamp`. - - ![alt text][configure_index] - -1. Load example Dashboard and Visualizations under docker/kibana/. - - Goto: Management -> Saved Objects and select the `Import` button. Import the - `Apache Flagon Visualizations.json`, `Drill-Down Search.json`, `Apache Flagon Page Usage Dashboard.json`, and `Apache Flagon User Access Dashboard.json` files from the "Saved Objects" folder in the kibana directory. - - ![alt text][management] - - Set `userale` index if Kibana detects conflicts when you load visualizations and searches. - - ![alt text][viz_import] - - Once that is complete, navigate to the `Dashboard` view in Kibana and click the - `Apache Flagon Page Usage Dashboard` object. - - ![alt text][dashboard] - -1. To see container performance metrics, launch Metricbeat: - - ```bash - $ docker-compose up -d metricbeat - ``` - - Once the container is running, metricbeat dashboards will automatically load in Kibana. Navigate to the `Container Dashboard`. - - ![alt text][metrics] - - Note that metricbeat and logging with UserALE.js will strain the single-node container. We recommend that metricbeat be started only for demonstration purposes. - -1. To stop all containers. - ```bash - $ docker-compose stop - ``` - - 1. To kill the Flagon machine. - ```bash - $ docker-machine stop flagon - ``` - - 1. To remove the Flagon machine. - ```bash - $ docker-machine rm flagon - ``` - -If running on a single machine, on reboot or restart your Flagon machine is available, but -in a "stopped" state. You'll need to restart the machine, then you'll need to use docker- -compose up commands above to restart containers. - - 1. Restart the Flagon machine. - ```bash - $ docker-machine start flagon - $ docker-machine ls #confirm state - #output should look like this: - NAME ACTIVE DRIVER STATE URL SWARM DOCKER ERRORS - flagon - virtualbox Running tcp://192. ... v19.03.1 - ``` - -Having Issues? --------------- -1. Check out the docker-compose logs for the service(s) that are having issues. - - ```bash - $ docker-compose ps - ``` - -1. If you find containers failing, you may have duplicate or dangling images! - - This can happen if you've played around with multiple machines and builds of the containers - on the same machine. Visit [``this excellent how to guide for removing images, containers, - and volumes``](https://www.digitalocean.com/community/tutorials/how-to-remove-docker-images-containers-and-volumes). Remove any duplicate images and rebuild the containers. - -1. If you find that the `logstash` or `site` containers don't respond immediately, give them a few minutes. - In the case of the `site` container, you might try giving it a kick if its taking more than three minutes to load in browser" - - ```bash - #after loading container, confirming status is "up", and localhost:8080 still isn't loading, bring the container down - $ docker-compose kill site - - # then bring it back up, and see if it loads - $ docker-compose up -d site - ``` - -1. If you find that Apache Flagon Kibana Dashboards aren't loading, or Apache UserALE.js log fields in Kibana's `Discover` view - appear with a warning icon, it could be that you didn't collect logs with valid data for those fields prior to loading the userale - index in Kibana. Don't worry, your data is fine--just navigate to the Management -> Index Patterns page, and click the "refresh" button in the upper right hand of the page (Disregard the "popularity metrics" warning). This will refresh the index, making those - fields aggregatable, and Dashboards should render properly. - -1. Make sure to send us the docker-compose logs to help diagnose your issues please! - - ```bash - $ docker-compose logs > err.dump - ``` - - You can attach logs directly to tickets on our [``Apache Jira board``](https://issues.apache.org/jira/issues/?jql=project+%3D+FLAGON+AND+component+%3D+builds) - -1. Still having issues? Reach out to us at at [our dev list](mailto:dev@flagon.incubator.apache.org). - -[configure_index]: ./docs/images/configure_index.png "Configure Kibana index" -[confirmation]: ./docs/images/confirmation.png "Confirm index pattern conflicts" -[dashboard]: ./docs/images/dashboard.png "Apache Flagon Page Usage Dashboard" -[management]: ./docs/images/management.png "Kibana management console" -[metrics]: ./docs/images/DockerBeats_Dashboard.png "Metricbeat Dashboard" -[viz_import]: ./docs/images/viz_import.png "Visualization Import Configuration" - -Licensing --------------- - -Apache Flagon is provided under Apache License version 2.0. See LICENSE and NOTICE (at Master) file for more -details.
diff --git a/docker/_WIP_builds/README.md b/docker/_WIP_builds/README.md deleted file mode 100755 index 94588aa..0000000 --- a/docker/_WIP_builds/README.md +++ /dev/null
@@ -1,321 +0,0 @@ -Building SensSoft Docker Containers -======================================= -*Last Tested (on macOS Mojave) 23 JAN 2019* - -Prerequisites -------------- - -1. Install [``Docker``](http://docker.com) on your machine. Requires Docker 1.7 and above. - -1. Install docker-compose. Full instructions can be found [``here``](https://docs.docker.com/compose/install/). - If you install Docker through the [``Desktop bundle``](https://www.docker.com/products/docker-desktop), docker-compose is included. - -Single Node Deployment ----------------------- - -The single node deployment steps below will build a single-node logging server on a single -machine. This is suitable for demonstrations and very limited data collections. Please -refer to our [``Kubernetes``](https://github.com/apache/incubator-senssoft/tree/master/kubernetes) guide for deployments that scale to your needs. In some cases, -you may be able to use single node containers within scaling services (e.g., AWS EBS), but this -requires special configuration. Please reach out to us at [our dev list](mailto:dev@senssoft.incubator.apache.org) for recommendations. - -1. Create docker-machine instance. - **Note**: If using Docker Desktop bundle, there is a known bug in - the bundled version of virtualbox that will prevent a successful docker-machine creation. - Before installation, check that virtualbox version is at least 5.2. [``Reinstall virtualbox``](https://www.virtualbox.org/wiki/Downloads), if needed. - - ```bash - $ docker-machine create --virtualbox-memory 3072 --virtualbox-cpu-count 2 senssoft - ``` - -1. Before launching the Docker containers, ensure your ``vm_max_map_count`` - kernel setting is set to at least 262144. - Visit [``Running Elasticsearch in Production mode``](https://www.elastic.co/guide/en/elasticsearch/reference/5.5/docker.html#docker-cli-run-prod-mode) for OS specific instructions. - - ```bash - # Example for Linux systems - $ docker-machine ssh senssoft sudo sysctl -w vm.max_map_count=262144 - ``` - -1. Create externel docker network to enable system monitoring. Only enable if running - the Elasticsearch 6.5.4 configuration (single and cluster mode) - - ```bash - $ docker network create esnet - ``` - -1. Start Elasticsearch 6.2.2 (Deprecated) or 6.5.4 (Recommended) Give Elasticsearch about 1-2 minutes to start before confirming its state. - - ```bash - #start Elasticsearch v6.2.2 (Deprecated) - $ docker-compose -f docker-compose.single-6.2.2.yml up -d elasticsearch - - or - - #start Elasticsearch v6.5.4 (Recommended) - $ docker-compose up -d elasticsearch - ``` - -1. Confirm state: - ```bash - # if senssoft vm is remote - $ docker-machine ssh senssoft curl -XGET http://localhost:9200/_cluster/health?pretty - # if senssoft virtual machine is running on your local machine, no need for ssh, instead: - $ curl -XGET http://localhost:9200/_cluster/health?pretty - #output should look like this: - "cluster_name" : "SensSoft", - "status" : "yellow", - "timed_out" : false, - "number_of_nodes" : 1, - "number_of_data_nodes" : 1, - "active_primary_shards" : 0, - "active_shards" : 0, - "relocating_shards" : 0, - "initializing_shards" : 0, - "unassigned_shards" : 0, - "delayed_unassigned_shards" : 0, - "number_of_pending_tasks" : 0, - "number_of_in_flight_fetch" : 0, - "task_max_waiting_in_queue_millis" : 0, - "active_shards_percent_as_number" : 100.0 - ``` - -1. Launch logging server. Give Logstash about 2 minutes to start before confirming - its state. - - ```bash - $ docker-compose up -d logstash - # if senssoft vm is remote - $ docker-machine ssh senssoft curl -XGET http://localhost:8100 - # if senssoft virtual machine is running on your local machine, no need for ssh, instead: - $ curl -XGET http://localhost:8100 - #ouput should look like this: - ok - ``` - -1. Before Kibana can be used, we will need to generate some data. We provide an example instrumented website to assist. - - ```bash - $ docker-compose up -d site - # for remote users, forwards port to localhost - $ ssh docker@$(docker-machine ip senssoft) -L 8080:localhost:8080 - ``` - - Visit `http://localhost:8080` and you will see Apache SensSoft's home page. - - Note that the `userale` index uses dynamic mapping configurations for many fields. This means that if no valid data exists for - certain fields in the logs you collect at this step, Kibana won't know to map these fields to data types (e.g., string, text, - boolean, etc.). This can prevent certain dashboards and visualizations from appropriately displaying log aggregations. It is worth - 1-2 mins collecting some UserALE.js data in whichever way best emulates your use-case: from the same website, the [``UserALE.js example utilty``](https://github.com/apache/incubator-senssoft-useralejs/tree/SENSSOFT-192/example), or the [``UserALE.js Web Extension``](https://github.com/apache/incubator-senssoft-useralejs/tree/SENSSOFT-192/src/UserALEWebExtension). If you run into issues with data fields or visualizations, see the `Having Issues?` section below. - -1. Launch Kibana. Give Kibana about 2-5 minutes to start before accessing - `http://localhost:5601`. - - ```bash - $ docker-compose up -d kibana - # for remote users, forwards port to localhost - $ ssh docker@$(docker-machine ip senssoft) -L 5601:localhost:5601 - ``` - -1. Register an index in Kibana to see the logs: - - Goto: Management -> Index Patterns and enter `userale` in the Index pattern box. - Choose `clientTime` in the drop down `Time Filter field name` field. - - ![alt text][configure_index] - -1. Load example Dashboard and Visualizations under docker/kibana/. - - Goto: Management -> Saved Objects and select the `Import` button. Import the - `Apache SensSoft Visualizations.json`, `Drill-Down Search.json`, `Apache SensSoft Page Usage Dashboard.json`, and `Apache SensSoft User Access Dashboard.json` files from the "Saved Objects" folder in the kibana directory. - - ![alt text][management] - - Set `userale` index if Kibana detects conflicts when you load visualizations and searches. - - ![alt text][viz_import] - - Once that is complete, navigate to the `Dashboard` view in Kibana and click the - `Apache SensSoft Page Usage Dashboard` object. - - ![alt text][dashboard] - -1. To see container health metrics, launch Metricbeat: - - ```bash - $ docker-compose up -d metricbeat - ``` - - Once the container is running, metricbeat dashboards will automatically load in Kibana. Navigate to the `Container Dashboard`. - - ![alt text][metrics] - -1. To stop all containers. - ```bash - $ docker-compose stop - ``` - - 1. To kill the senssoft machine. - ```bash - $ docker-machine rm senssoft - ``` - -If running on a single machine, on reboot or restart your senssoft machine is available, but -in a "stopped" state. You'll need to restart the machine, then you'll need to use docker- -compose up commands above to restart containers. - - 1. Restart the senssoft machine. - ```bash - $ docker-machine start senssoft - $ docker-machine ls #confirm state - #output should look like this: - NAME ACTIVE DRIVER STATE URL SWARM DOCKER ERRORS - senssoft - virtualbox Running tcp://192.168.99.100:2376 v18.09.0 - ``` - -Multi-Node Deployment on a Single Machine ------------------------------------------ - -<aside class="warning"> - Starting an elasticsearch cluster is not recommended on a single server. This - is just for demonstration purposes only. Please refer to our [Kubernetes] guide to - deploy an Elasticsearch cluster for an enterprise scale logging capability. - </aside> - -1. Create docker-machine instance - ```bash - docker-machine create --virtualbox-memory 2048 --virtualbox-cpu-count 2 senssoft - ``` - -1. Before launching the Docker containers, ensure your ``vm_max_map_count`` - kernel setting is set to at least 262144. - Visit [``Running Elasticsearch in Production mode``](https://www.elastic.co/guide/en/elasticsearch/reference/5.5/docker.html#docker-cli-run-prod-mode) for OS specific instructions. - - ```bash - # Example for Linux systems - $ docker-machine ssh senssoft sudo sysctl -w vm.max_map_count=262144 - ``` - -1. Create externel docker network to enable system monitoring. Only enable if running - the Elasticsearch 6.2.2 configuration (single and cluster mode) - - ```bash - $ docker network create esnet - ``` - -1. Start Elasticsearch cluster: - - ```bash - $ docker-compose -f docker-compose.cluster.yml up -d --scale elasticsearch=3 elasticsearch - $ docker-compose -f docker-compose.cluster.yml up -d loadbalancer - ``` - - The loadbalancer node exposes port 9200 on localhost and is the only node - that has HTTP enabled. Services such as Kibana and Logstash connect to the - loadbalancer node directly. Loadbalancer accepts requests from Kibana and Logstash - and balances them across the elasticsearch worker nodes. The elasticsearch - worker nodes communicate to each other and the loadbalancer via TCP on port 9300. - -1. Confirm cluster state: - ```bash - $ docker-machine ssh senssoft curl -XGET http://localhost:9200/_cluster/health\?pretty - # if senssoft virtual machine is running on your local machine, no need for ssh, instead: - $ curl -XGET http://localhost:9200/_cluster/health?pretty - #output should look like this: - { - "cluster_name" : "SensSoft", - "status" : "green", - "timed_out" : false, - "number_of_nodes" : 4, - "number_of_data_nodes" : 3, - "active_primary_shards" : 0, - "active_shards" : 0, - "relocating_shards" : 0, - "initializing_shards" : 0, - "unassigned_shards" : 0, - "delayed_unassigned_shards" : 0, - "number_of_pending_tasks" : 0, - "number_of_in_flight_fetch" : 0, - "task_max_waiting_in_queue_millis" : 0, - "active_shards_percent_as_number" : 100.0 - } - ``` - Confirm that the `number_of_nodes` is 4 and `number_of_data_nodes` is 3. - -1. Follow remaining instructions in [Single Node Deployment] starting at #6. - -1. To stop all containers. - ```bash - $ docker-compose stop - ``` - - 1. To kill the "senssoft" machine. - ```bash - $ docker-machine rm senssoft - ``` - -If running on a single machine, on reboot or restart your senssoft machine is available, but -in a "stopped" state. You'll need to restart the machine, then you'll need to use docker- -compose up commands above to restart containers. - - 1. Restart the senssoft machine. - ```bash - $ docker-machine start senssoft - $ docker-machine ls #confirm state - #output should look like this: - NAME ACTIVE DRIVER STATE URL SWARM DOCKER ERRORS - senssoft - virtualbox Running tcp://192.168.99.100:2376 v18.09.0 - ``` - -Having Issues? --------------- -1. Check out the docker-compose logs for the service(s) that are having issues. - - ```bash - $ docker-compose ps - ``` - -1. If you find containers failing, you may have duplicate or dangling images! - - This can happen if you've played around with multiple machines and builds of the containers - on the same machine. Visit [``this excellent how to guide for removing images, containers, - and volumes``](https://www.digitalocean.com/community/tutorials/how-to-remove-docker-images-containers-and-volumes). Remove any duplicate images and rebuild the containers. - -1. If you find that the `logstash` or `site` containers don't respond immediately, give them a few minutes. - In the case of the `site` container, you might try giving it a kick if its taking more than three minutes to load in browser" - - ```bash - #after loading container, confirming status is "up", and localhost:8080 still isn't loading, bring the container down - $ docker-compose kill site - - # then bring it back up, and see if it loads - $ docker-compose up -d site - ``` - -1. If you find that Apache SensSoft Kibana Dashboards aren't loading, or Apache UserALE.js log fields in Kibana's `Discover` view - appear with a warning icon, it could be that you didn't collect logs with valid data for those fields prior to loading the userale - index in Kibana. Don't worry, your data is fine--just navigate to the Management -> Index Patterns page, and click the "refresh" button in the upper right hand of the page (Disregard the "popularity metrics" warning). This will refresh the index, making those - fields aggregatable, and Dashboards should render properly. - -1. Make sure to send us the docker-compose logs to help diagnose your issues please! - - ```bash - $ docker-compose logs > err.dump - ``` - - You can attach logs directly to tickets on our [``Apache Jira board``](https://issues.apache.org/jira/issues/?jql=project+%3D+SENSSOFT+AND+component+%3D+builds) - -1. Still having issues? Reach out to us at at [our dev list](mailto:dev@senssoft.incubator.apache.org). - -[configure_index]: ./docs/images/configure_index.png "Configure Kibana index" -[confirmation]: ./docs/images/confirmation.png "Confirm index pattern conflicts" -[dashboard]: ./docs/images/dashboard.png "Apache Senssoft Page Usage Dashboard" -[management]: ./docs/images/management.png "Kibana management console" -[metrics]: ./docs/images/DockerBeats_Dashboard.png "Metricbeat Dashboard" -[viz_import]: ./docs/images/viz_import.png "Visualization Import Configuration" - -Licensing --------------- - -Apache SensSoft is provided under Apache License version 2.0. See LICENSE (at Master) file for more -details. "Software as a Sensor" is Copyright © 2016 The Charles Stark Draper Laboratory, Inc. All rights reserved.
diff --git a/docker/_WIP_builds/docker-compose.cluster.yml b/docker/_WIP_builds/docker-compose.cluster.yml deleted file mode 100644 index 96f6cc4..0000000 --- a/docker/_WIP_builds/docker-compose.cluster.yml +++ /dev/null
@@ -1,182 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Apache SensSoft Cluster Build - -version: "3" -services: - - # Startup - startup: - build: ./startup - depends_on: - - "loadbalancer" - command: bash /opt/entrypoint.sh - - # # Site - site: - build: ./site - ports: - - 8080:8080 - depends_on: - - "logstash" - command: python -m SimpleHTTPServer 8080 - - # Elasticsearch Swarm Workers - elasticsearch: - build: ./elasticsearch/6.2.2 - environment: - - NODE_MASTER=true - - NUMBER_OF_MASTERS=3 - - NODE_COORDINATE=true - - "DISCOVERY_SERVICE=elasticsearch" - - NODE_DATA=true - - NODE_INGEST=true - - MAX_LOCAL_STORAGE_NODES=1 - - NETWORK_HOST=0.0.0.0 - - HTTP_ENABLE=false - - HTTP_CORS_ENABLE=false - - HTTP_CORS_ALLOW_ORIGIN=* - - "ES_JAVA_OPTS=-Xms256m -Xmx256m" - ulimits: - memlock: - soft: -1 - hard: -1 - healthcheck: - test: ["CMD", "curl","-s" ,"-f", "-u", "http://localhost:9200/_cluster/health"] - networks: - - esnet - - # Elasticsearch Loadbalancer - loadbalancer: - build: ./elasticsearch/6.2.2 - environment: - - NODE_MASTER=false - - NUMBER_OF_MASTERS=1 - - NODE_COORDINATE=true - - "DISCOVERY_SERVICE=elasticsearch" - - NODE_DATA=false - - NODE_INGEST=false - - MAX_LOCAL_STORAGE_NODES=1 - - NETWORK_HOST=0.0.0.0 - - HTTP_ENABLE=true - - HTTP_CORS_ENABLE=true - - HTTP_CORS_ALLOW_ORIGIN=* - - "ES_JAVA_OPTS=-Xms256m -Xmx256m" - ulimits: - memlock: - soft: -1 - hard: -1 - healthcheck: - test: ["CMD", "curl","-s" ,"-f", "-u", "http://localhost:9200/_cluster/health"] - ports: - - "9200:9200" - - "9300" - networks: - - esnet - - # Kibana - kibana: - build: ./kibana/6.2.2 - environment: - - "ES_JAVA_OPTS=-Xms256m -Xmx256m" - - "ELASTICSEARCH_URL=http://loadbalancer:9200" - ports: - - "5601:5601" - depends_on: - - "loadbalancer" - networks: - - esnet - - # Logstash - logstash: - build: ./logstash/6.2.2 - environment: - - "ELASTICSEARCH_URL=loadbalancer:9200" - ports: - - 8100:8100 - volumes: - - ./logstash/6.2.2/pipeline/logstash-userale.conf:/usr/share/logstash/pipeline/logstash-userale.conf - - ./logstash/6.2.2/templates/userale.json:/usr/share/logstash/templates/userale.json - depends_on: - - "loadbalancer" - networks: - - esnet - - # Distill - distill: - build: ./distill - ports: - - 8090:8090 - depends_on: - - "loadbalancer" - networks: - - esnet - - # TAP's Database - db: - build: ./db - image: senssoft/postgres:latest - ports: - - "5432:5432" - - # TAP - tap: - build: ./tap - command: bash -c "/usr/src/app/wait-for-postgres.sh" - ports: - - "8010:8010" - depends_on: - - db - links: - - db:db - - # Specific container and configuration to monitor the HOST (filesystem, memory, processes,...) - metricbeat: - image: docker.elastic.co/beats/metricbeat:6.2.4 - restart: unless-stopped - user: root - pid: host - volumes: - #The commented sections below enable Metricbeat to monitor the Docker host - #rather than the Metricbeat container. These are used by the system module. - - /proc:/hostfs/proc:ro - - /sys/fs/cgroup:/hostfs/sys/fs/cgroup:ro - #We mount the host filesystem so we can report on disk usage with the system module - - /:/hostfs:ro - #Mount the metricbeat configuration so users can make edit - - ./beats/metricbeat/metricbeat.yml:/usr/share/metricbeat/metricbeat.yml - #Mount the modules.d directory into the container. This allows user to - #potentially make changes to the modules and they will be dynamically loaded. - - ./beats/metricbeat/modules.d/:/usr/share/metricbeat/modules.d/ - #Allows us to report on docker from the hosts information - - /var/run/docker.sock:/var/run/docker.sock - depends_on: - - loadbalancer - environment: - - ELASTICSEARCH_URL=http://loadbalancer:9200 - - KIBANA_URL=http://kibana:5601 - - LOGSTASH_URL=http://logstash:9600 - extra_hosts: - - "loadbalancer:172.17.0.1" # The IP of docker0 interface to access host from container - - "kibana:172.17.0.1" # The IP of docker0 interface to access host from container - - "logstash:172.17.0.1" - command: metricbeat -e -system.hostfs=/hostfs -strict.perms=false - network_mode: host # Mandatory to monitor HOST filesystem, memory, processes,... - -networks: - esnet: - external: - name: esnet
diff --git a/docker/beats/metricbeat/metricbeat.yml b/docker/beats/metricbeat/metricbeat.yml deleted file mode 100644 index a987a43..0000000 --- a/docker/beats/metricbeat/metricbeat.yml +++ /dev/null
@@ -1,24 +0,0 @@ -metricbeat.config.modules: - - # Glob pattern for configuration reloading - path: ${path.config}/modules.d/*.yml - - # Period on which files under path should be checked for changes - reload.period: 30s - - # Set to true to enable config reloading - reload.enabled: true - -# Maximum amount of time to randomly delay the start of a metricset. Use 0 to -# disable startup delay. -metricbeat.max_start_delay: 10s - -output.elasticsearch: - hosts: ["${ELASTICSEARCH_URL}"] - -setup.dashboards.enabled: true - -setup.kibana: - host: "${KIBANA_URL}" - -logging.to_files: false \ No newline at end of file
diff --git a/docker/beats/metricbeat/modules.d/docker.yml b/docker/beats/metricbeat/modules.d/docker.yml deleted file mode 100644 index 87a18f0..0000000 --- a/docker/beats/metricbeat/modules.d/docker.yml +++ /dev/null
@@ -1,6 +0,0 @@ -#------------------------------- Docker Module ------------------------------- -- module: docker - metricsets: ["container", "cpu", "diskio", "healthcheck", "info", "memory", "network"] - hosts: ["unix:///var/run/docker.sock"] - enabled: true - period: 10s
diff --git a/docker/beats/metricbeat/modules.d/elasticsearch.yml b/docker/beats/metricbeat/modules.d/elasticsearch.yml deleted file mode 100644 index 62f7dcb..0000000 --- a/docker/beats/metricbeat/modules.d/elasticsearch.yml +++ /dev/null
@@ -1,6 +0,0 @@ -#---------------------------- Elasticsearch Module --------------------------- -- module: elasticsearch - metricsets: ["node", "node_stats"] - period: 10s - enabled: true - hosts: ["${ELASTICSEARCH_URL}"] \ No newline at end of file
diff --git a/docker/beats/metricbeat/modules.d/kafka.yml b/docker/beats/metricbeat/modules.d/kafka.yml deleted file mode 100644 index b1954cc..0000000 --- a/docker/beats/metricbeat/modules.d/kafka.yml +++ /dev/null
@@ -1,9 +0,0 @@ -#---------------------------- Kafka Module --------------------------- -- module: kafka - metricsets: ["consumergroup", "partition"] - period: 10s - hosts: ["${KAFKA_URL}"] - enabled: false - - # List of Topics to query metadata for. If empty, all topics will be queried. - #topics: [] \ No newline at end of file
diff --git a/docker/beats/metricbeat/modules.d/kibana.yml b/docker/beats/metricbeat/modules.d/kibana.yml deleted file mode 100644 index 0d83b05..0000000 --- a/docker/beats/metricbeat/modules.d/kibana.yml +++ /dev/null
@@ -1,6 +0,0 @@ -#------------------------------- Kibana Module ------------------------------- -- module: kibana - metricsets: ["status"] - period: 30s - enabled: true - hosts: ["${KIBANA_URL}"] \ No newline at end of file
diff --git a/docker/beats/metricbeat/modules.d/kubernetes.yml b/docker/beats/metricbeat/modules.d/kubernetes.yml deleted file mode 100644 index f58ea52..0000000 --- a/docker/beats/metricbeat/modules.d/kubernetes.yml +++ /dev/null
@@ -1,30 +0,0 @@ -#----------------------------- Kubernetes Module ----------------------------- -# Node metrics, from kubelet: -- module: kubernetes - enabled: false - metricsets: - - node - - system - - pod - - container - - volume - period: 10s - hosts: ["localhost:10255"] - -# State metrics from kube-state-metrics service: -- module: kubernetes - enabled: false - metricsets: - - state_node - - state_deployment - - state_replicaset - - state_pod - - state_container - period: 10s - hosts: ["kube-state-metrics:8080"] - -# Kubernetes events -- module: kubernetes - enabled: false - metricsets: - - event \ No newline at end of file
diff --git a/docker/beats/metricbeat/modules.d/logstash.yml b/docker/beats/metricbeat/modules.d/logstash.yml deleted file mode 100644 index 55a67ff..0000000 --- a/docker/beats/metricbeat/modules.d/logstash.yml +++ /dev/null
@@ -1,6 +0,0 @@ -#------------------------------ Logstash Module ------------------------------ -- module: logstash - metricsets: ["node", "node_stats"] - enabled: true - period: 10s - hosts: ["${LOGSTASH_URL}"] \ No newline at end of file
diff --git a/docker/beats/metricbeat/modules.d/postgresql.yml b/docker/beats/metricbeat/modules.d/postgresql.yml deleted file mode 100644 index 363fe4b..0000000 --- a/docker/beats/metricbeat/modules.d/postgresql.yml +++ /dev/null
@@ -1,17 +0,0 @@ -#----------------------------- PostgreSQL Module ----------------------------- -- module: postgresql - metricsets: ["database", "activity"] - period: 10s - enabled: true - - # The host must be passed as PostgreSQL URL. Example: - # postgres://localhost:5432?sslmode=disable - # The available parameters are documented here: - # https://godoc.org/github.com/lib/pq#hdr-Connection_String_Parameters - hosts: ["${POSTGRESQL_URL}"] - - # Username to use when connecting to PostgreSQL. Empty by default. - username: "${POSTGRESQL_USERNAME}" - - # Password to use when connecting to PostgreSQL. Empty by default. - password: "${POSTGRESQL_PASSWORD}" \ No newline at end of file
diff --git a/docker/beats/metricbeat/modules.d/system.yml b/docker/beats/metricbeat/modules.d/system.yml deleted file mode 100644 index f2d6bb2..0000000 --- a/docker/beats/metricbeat/modules.d/system.yml +++ /dev/null
@@ -1,24 +0,0 @@ -#------------------------------- System Module ------------------------------- -- module: system - metricsets: - - core - - cpu - - diskio - - filesystem - - fsstat - - load - - memory - - network - - process - - process_summary - - socket - - uptime - enabled: true - period: 10s - processes: ['.*'] - process.include_top_n: - by_cpu: 5 # include top 5 processes by CPU - by_memory: 5 # incude top 5 processes by memory - core.metrics: [percentages, ticks] - cpu.metrics: [percentages, normalized_percentages, ticks] - process.cgroups.enabled: true \ No newline at end of file
diff --git a/docker/beats/metricbeat/modules.d/zookeeper.yml b/docker/beats/metricbeat/modules.d/zookeeper.yml deleted file mode 100644 index ca67993..0000000 --- a/docker/beats/metricbeat/modules.d/zookeeper.yml +++ /dev/null
@@ -1,6 +0,0 @@ -#---------------------------- ZooKeeper Module --------------------------- -- module: zookeeper - enabled: false - metricsets: ["mntr"] - period: 10s - hosts: ["${ZOOKEEPER_URL}"] \ No newline at end of file
diff --git a/docker/db/Dockerfile b/docker/db/Dockerfile deleted file mode 100644 index bb6152f..0000000 --- a/docker/db/Dockerfile +++ /dev/null
@@ -1,21 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM postgres:latest -MAINTAINER Michelle Beard <msbeard@apache.org> - -ADD sql.sh docker-entrypoint-initdb.d/sql.sh - -EXPOSE 5432 \ No newline at end of file
diff --git a/docker/db/sql.sh b/docker/db/sql.sh deleted file mode 100644 index 4de31b5..0000000 --- a/docker/db/sql.sh +++ /dev/null
@@ -1,32 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at - -# http://www.apache.org/licenses/LICENSE-2.0 - -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -#!/bin/bash - -echo "Creating POSTGRES DB FROM ENVIRONMENT" -DB_NAME=tapdb -DB_USER=tapuser -DB_PASS="Dr@p3rUs3r" -DB_SERVICE=postgres - -psql -U postgres -c "CREATE USER $DB_USER PASSWORD '$DB_PASS'" -psql -U postgres -c "CREATE DATABASE $DB_NAME OWNER $DB_USER" -psql -U postgres -c "GRANT ALL PRIVILEGES ON DATABASE $DB_NAME TO $DB_USER" - -#localedef -i de_DE -c -f UTF-8 -A /usr/share/locale/locale.alias de_DE.UTF-8 -##export LANG=en_US.UTF-8 -#locale # confirm that it shows only en_US.UTF-8 for all settings -# finally, run your opennms installer -#/usr/share/opennms/bin/install -l /usr/local/lib -dis
diff --git a/docker/distill/Dockerfile b/docker/distill/Dockerfile deleted file mode 100644 index 972edb3..0000000 --- a/docker/distill/Dockerfile +++ /dev/null
@@ -1,35 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM python:2 - -# install system wide deps -RUN apt-get -yqq update - -# Set the work directory -RUN mkdir -p /usr/src -WORKDIR /usr/src - -# Clone Distill -RUN git clone https://github.com/apache/incubator-senssoft-distill.git distill -WORKDIR /usr/src/distill -RUN git pull - -# Install Distill dependencies -RUN pip install -r requirements.txt - -# Rest -RUN python setup.py install -CMD dev
diff --git a/docker/docker-compose-5.6.3.yml b/docker/docker-compose-5.6.3.yml deleted file mode 100644 index 0198644..0000000 --- a/docker/docker-compose-5.6.3.yml +++ /dev/null
@@ -1,114 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Apache SensSoft Single-Node Build - -version: "3" -services: - - # Startup - startup: - build: ./startup - depends_on: - - "loadbalancer" - command: bash /opt/entrypoint.sh - - # Site - site: - build: ./site - ports: - - 8080:8080 - depends_on: - - "logstash" - command: python -m SimpleHTTPServer 8080 - - # Elasticsearch - loadbalancer: - build: ./elasticsearch/5.6.3 - environment: - - NODE_MASTER=true - - NUMBER_OF_MASTERS=1 - - NODE_COORDINATE=true - - "DISCOVERY_SERVICE=0.0.0.0" - - NODE_DATA=true - - NODE_INGEST=true - - MAX_LOCAL_STORAGE_NODES=1 - - NETWORK_HOST=0.0.0.0 - - HTTP_ENABLE=true - - HTTP_CORS_ENABLE=true - - HTTP_CORS_ALLOW_ORIGIN=* - - "ES_JAVA_OPTS=-Xms512m -Xmx512m" - ports: - - "9200:9200" - networks: - - esnet - - # Kibana - kibana: - build: ./kibana/5.6.3 - environment: - - "ES_JAVA_OPTS=-Xms2g -Xmx2g" - - "ELASTICSEARCH_URL=http://elasticsearch:9200" - ports: - - "5601:5601" - depends_on: - - "elasticsearch" - networks: - - esnet - - # Logstash - logstash: - build: ./logstash/5.6.3 - environment: - - "ELASTICSEARCH_URL=elasticsearch:9200" - ports: - - 8100:8100 - depends_on: - - "elasticsearch" - networks: - - esnet - - # Distill - distill: - build: ./distill - ports: - - 8090:8090 - depends_on: - - "loadbalancer" - networks: - - esnet - - # TAP's Database - db: - build: ./db - image: senssoft/postgres:latest - ports: - - "5432:5432" - - # TAP - tap: - build: ./tap - command: bash -c "/usr/src/app/wait-for-postgres.sh" - ports: - - "8010:8010" - depends_on: - - db - links: - - db:db - - -networks: - esnet: - driver: bridge
diff --git a/docker/docker-compose-6.2.2.yml b/docker/docker-compose-6.2.2.yml deleted file mode 100644 index 316b7f5..0000000 --- a/docker/docker-compose-6.2.2.yml +++ /dev/null
@@ -1,163 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Apache SensSoft Single-Node Build - -version: "3" -services: - - # Startup - startup: - build: ./startup - depends_on: - - "elasticsearch" - command: bash /opt/entrypoint.sh - - # Site - site: - build: ./site - ports: - - 8080:8080 - depends_on: - - "logstash" - command: python -m SimpleHTTPServer 8080 - - # Elasticsearch - elasticsearch: - build: ./elasticsearch/6.2.2 - environment: - - NODE_MASTER=true - - NUMBER_OF_MASTERS=1 - - NODE_COORDINATE=true - - "DISCOVERY_SERVICE=0.0.0.0" - - NODE_DATA=true - - NODE_INGEST=true - - MAX_LOCAL_STORAGE_NODES=1 - - NETWORK_HOST=0.0.0.0 - - HTTP_ENABLE=true - - HTTP_CORS_ENABLE=true - - HTTP_CORS_ALLOW_ORIGIN=* - - "ES_JAVA_OPTS=-Xms512m -Xmx512m" - ulimits: - memlock: - soft: -1 - hard: -1 - healthcheck: - test: ["CMD", "curl","-s" ,"-f", "-u", "http://localhost:9200/_cluster/health"] - # Mount volumes to backup elasticsearch data -# volumes: -# - esdata:/usr/share/elasticsaerch/data - ports: - - "9200:9200" - networks: - - esnet - - # Kibana - kibana: - build: ./kibana/6.2.2 - environment: - - "ES_JAVA_OPTS=-Xms512m -Xmx512m" - - "ELASTICSEARCH_URL=http://elasticsearch:9200" - ports: - - "5601:5601" - depends_on: - - "elasticsearch" - networks: - - esnet - - # Logstash - logstash: - build: ./logstash/6.2.2 - environment: - - "ELASTICSEARCH_URL=elasticsearch:9200" - ports: - - 8100:8100 - volumes: - - ./logstash/6.2.2/pipeline/logstash-userale.conf:/usr/share/logstash/pipeline/logstash-userale.conf - - ./logstash/6.2.2/templates/userale.json:/usr/share/logstash/templates/userale.json - depends_on: - - "elasticsearch" - networks: - - esnet - - # Distill - distill: - build: ./distill - ports: - - 8090:8090 - depends_on: - - "elasticsearch" - networks: - - esnet - - # TAP's Database - db: - build: ./db - image: senssoft/postgres:latest - ports: - - "5432:5432" - - # TAP - tap: - build: ./tap - command: bash -c "/usr/src/app/wait-for-postgres.sh" - ports: - - "8010:8010" - depends_on: - - db - links: - - db:db - - # Specific container and configuration to monitor the HOST (filesystem, memory, processes,...) - metricbeat: - image: docker.elastic.co/beats/metricbeat:6.2.4 -# restart: unless-stopped - user: root - pid: host - volumes: - #The commented sections below enable Metricbeat to monitor the Docker host - #rather than the Metricbeat container. These are used by the system module. - - /proc:/hostfs/proc:ro - - /sys/fs/cgroup:/hostfs/sys/fs/cgroup:ro - #We mount the host filesystem so we can report on disk usage with the system module - - /:/hostfs:ro - #Mount the metricbeat configuration so users can make edits - - ./beats/metricbeat/metricbeat.yml:/usr/share/metricbeat/metricbeat.yml - #Mount the modules.d directory into the container. This allows user to - #potentially make changes to the modules and they will be dynamically loaded. - - ./beats/metricbeat/modules.d/:/usr/share/metricbeat/modules.d/ - #Allows us to report on docker from the hosts information - - /var/run/docker.sock:/var/run/docker.sock - depends_on: - - elasticsearch - environment: - - ELASTICSEARCH_URL=http://elasticsearch:9200 - - KIBANA_URL=http://kibana:5601 - - LOGSTASH_URL=http://logstash:9600 - - POSTGRESQL_URL="postgresql://db:5432/tapdb?sslmode=disable" - - POSTGRESQL_USERNAME=tapuser - - POSTGRESQL_PASSWORD="Dr@p3rUs3r" - extra_hosts: - - "elasticsearch:172.17.0.1" # The IP of docker0 interface to access host from container - - "kibana:172.17.0.1" # The IP of docker0 interface to access host from container - - "logstash:172.17.0.1" - - "db:172.17.0.1" - command: metricbeat -e -system.hostfs=/hostfs -strict.perms=false - network_mode: host # Mandatory to monitor HOST filesystem, memory, processes,... - -networks: - esnet: - external: - name: esnet
diff --git a/docker/docker-compose-6.5.4.yml b/docker/docker-compose-6.5.4.yml deleted file mode 100644 index dd104ac..0000000 --- a/docker/docker-compose-6.5.4.yml +++ /dev/null
@@ -1,163 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Apache Flagon Single-Node Build - -version: "3" -services: - - # Startup - startup: - build: ./startup - depends_on: - - "elasticsearch" - command: bash /opt/entrypoint.sh - - # Site - site: - build: ./site - ports: - - 8080:8080 - depends_on: - - "logstash" - command: python -m SimpleHTTPServer 8080 - - # Elasticsearch - elasticsearch: - build: ./elasticsearch/6.5.4 - environment: - - NODE_MASTER=true - - NUMBER_OF_MASTERS=1 - - NODE_COORDINATE=true - - "DISCOVERY_SERVICE=0.0.0.0" - - NODE_DATA=true - - NODE_INGEST=true - - MAX_LOCAL_STORAGE_NODES=1 - - NETWORK_HOST=0.0.0.0 - - HTTP_ENABLE=true - - HTTP_CORS_ENABLE=true - - HTTP_CORS_ALLOW_ORIGIN=* - - "ES_JAVA_OPTS=-Xms512m -Xmx512m" - ulimits: - memlock: - soft: -1 - hard: -1 - healthcheck: - test: ["CMD", "curl","-s" ,"-f", "-u", "http://localhost:9200/_cluster/health"] - # Mount volumes to backup elasticsearch data -# volumes: -# - esdata:/usr/share/elasticsaerch/data - ports: - - "9200:9200" - networks: - - esnet - - # Kibana - kibana: - build: ./kibana/6.5.4 - environment: - - "ES_JAVA_OPTS=-Xms512m -Xmx512m" - - "ELASTICSEARCH_URL=http://elasticsearch:9200" - ports: - - "5601:5601" - depends_on: - - "elasticsearch" - networks: - - esnet - - # Logstash - logstash: - build: ./logstash/6.5.4 - environment: - - "ELASTICSEARCH_URL=elasticsearch:9200" - ports: - - 8100:8100 - volumes: - - ./logstash/6.5.4/pipeline/logstash-userale.conf:/usr/share/logstash/pipeline/logstash-userale.conf - - ./logstash/6.5.4/templates/userale.json:/usr/share/logstash/templates/userale.json - depends_on: - - "elasticsearch" - networks: - - esnet - - # Distill - distill: - build: ./distill - ports: - - 8090:8090 - depends_on: - - "elasticsearch" - networks: - - esnet - - # TAP's Database - db: - build: ./db - image: senssoft/postgres:latest - ports: - - "5432:5432" - - # TAP - tap: - build: ./tap - command: bash -c "/usr/src/app/wait-for-postgres.sh" - ports: - - "8010:8010" - depends_on: - - db - links: - - db:db - - # Specific container and configuration to monitor the HOST (filesystem, memory, processes,...) - metricbeat: - image: docker.elastic.co/beats/metricbeat:6.5.4 -# restart: unless-stopped - user: root - pid: host - volumes: - #The commented sections below enable Metricbeat to monitor the Docker host - #rather than the Metricbeat container. These are used by the system module. - - /proc:/hostfs/proc:ro - - /sys/fs/cgroup:/hostfs/sys/fs/cgroup:ro - #We mount the host filesystem so we can report on disk usage with the system module - - /:/hostfs:ro - #Mount the metricbeat configuration so users can make edits - - ./beats/metricbeat/metricbeat.yml:/usr/share/metricbeat/metricbeat.yml - #Mount the modules.d directory into the container. This allows user to - #potentially make changes to the modules and they will be dynamically loaded. - - ./beats/metricbeat/modules.d/:/usr/share/metricbeat/modules.d/ - #Allows us to report on docker from the hosts information - - /var/run/docker.sock:/var/run/docker.sock - depends_on: - - elasticsearch - environment: - - ELASTICSEARCH_URL=http://elasticsearch:9200 - - KIBANA_URL=http://kibana:5601 - - LOGSTASH_URL=http://logstash:9600 - - POSTGRESQL_URL="postgresql://db:5432/tapdb?sslmode=disable" - - POSTGRESQL_USERNAME=tapuser - - POSTGRESQL_PASSWORD="Dr@p3rUs3r" - extra_hosts: - - "elasticsearch:172.17.0.1" # The IP of docker0 interface to access host from container - - "kibana:172.17.0.1" # The IP of docker0 interface to access host from container - - "logstash:172.17.0.1" - - "db:172.17.0.1" - command: metricbeat -e -system.hostfs=/hostfs -strict.perms=false - network_mode: host # Mandatory to monitor HOST filesystem, memory, processes,... - -networks: - esnet: - external: - name: esnet
diff --git a/docker/docker-compose-6.6.2.yml b/docker/docker-compose-6.6.2.yml deleted file mode 100644 index 4c7647f..0000000 --- a/docker/docker-compose-6.6.2.yml +++ /dev/null
@@ -1,163 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Apache Flagon Single-Node Build - -version: "3" -services: - - # Startup - startup: - build: ./startup - depends_on: - - "elasticsearch" - command: bash /opt/entrypoint.sh - - # Site - site: - build: ./site - ports: - - 8080:8080 - depends_on: - - "logstash" - command: python -m SimpleHTTPServer 8080 - - # Elasticsearch - elasticsearch: - build: ./elasticsearch/6.6.2 - environment: - - NODE_MASTER=true - - NUMBER_OF_MASTERS=1 - - NODE_COORDINATE=true - - "DISCOVERY_SERVICE=0.0.0.0" - - NODE_DATA=true - - NODE_INGEST=true - - MAX_LOCAL_STORAGE_NODES=1 - - NETWORK_HOST=0.0.0.0 - - HTTP_ENABLE=true - - HTTP_CORS_ENABLE=true - - HTTP_CORS_ALLOW_ORIGIN=* - - "ES_JAVA_OPTS=-Xms512m -Xmx512m" - ulimits: - memlock: - soft: -1 - hard: -1 - healthcheck: - test: ["CMD", "curl","-s" ,"-f", "-u", "http://localhost:9200/_cluster/health"] - # Mount volumes to backup elasticsearch data -# volumes: -# - esdata:/usr/share/elasticsaerch/data - ports: - - "9200:9200" - networks: - - esnet - - # Kibana - kibana: - build: ./kibana/6.6.2 - environment: - - "ES_JAVA_OPTS=-Xms512m -Xmx512m" - - "ELASTICSEARCH_URL=http://elasticsearch:9200" - ports: - - "5601:5601" - depends_on: - - "elasticsearch" - networks: - - esnet - - # Logstash - logstash: - build: ./logstash/6.6.2 - environment: - - "ELASTICSEARCH_URL=elasticsearch:9200" - ports: - - 8100:8100 - volumes: - - ./logstash/6.6.2/pipeline/logstash-userale.conf:/usr/share/logstash/pipeline/logstash-userale.conf - - ./logstash/6.6.2/templates/userale.json:/usr/share/logstash/templates/userale.json - depends_on: - - "elasticsearch" - networks: - - esnet - - # Distill - distill: - build: ./distill - ports: - - 8090:8090 - depends_on: - - "elasticsearch" - networks: - - esnet - - # TAP's Database - db: - build: ./db - image: senssoft/postgres:latest - ports: - - "5432:5432" - - # TAP - tap: - build: ./tap - command: bash -c "/usr/src/app/wait-for-postgres.sh" - ports: - - "8010:8010" - depends_on: - - db - links: - - db:db - - # Specific container and configuration to monitor the HOST (filesystem, memory, processes,...) - metricbeat: - image: docker.elastic.co/beats/metricbeat-oss:6.6.2 -# restart: unless-stopped - user: root - pid: host - volumes: - #The commented sections below enable Metricbeat to monitor the Docker host - #rather than the Metricbeat container. These are used by the system module. - - /proc:/hostfs/proc:ro - - /sys/fs/cgroup:/hostfs/sys/fs/cgroup:ro - #We mount the host filesystem so we can report on disk usage with the system module - - /:/hostfs:ro - #Mount the metricbeat configuration so users can make edits - - ./beats/metricbeat/metricbeat.yml:/usr/share/metricbeat/metricbeat.yml - #Mount the modules.d directory into the container. This allows user to - #potentially make changes to the modules and they will be dynamically loaded. - - ./beats/metricbeat/modules.d/:/usr/share/metricbeat/modules.d/ - #Allows us to report on docker from the hosts information - - /var/run/docker.sock:/var/run/docker.sock - depends_on: - - elasticsearch - environment: - - ELASTICSEARCH_URL=http://elasticsearch:9200 - - KIBANA_URL=http://kibana:5601 - - LOGSTASH_URL=http://logstash:9600 - - POSTGRESQL_URL="postgresql://db:5432/tapdb?sslmode=disable" - - POSTGRESQL_USERNAME=tapuser - - POSTGRESQL_PASSWORD="Dr@p3rUs3r" - extra_hosts: - - "elasticsearch:172.17.0.1" # The IP of docker0 interface to access host from container - - "kibana:172.17.0.1" # The IP of docker0 interface to access host from container - - "logstash:172.17.0.1" - - "db:172.17.0.1" - command: metricbeat -e -system.hostfs=/hostfs -strict.perms=false - network_mode: host # Mandatory to monitor HOST filesystem, memory, processes,... - -networks: - esnet: - external: - name: esnet
diff --git a/docker/docker-compose-8.11.3.yml b/docker/docker-compose-8.11.3.yml deleted file mode 100644 index 5363f90..0000000 --- a/docker/docker-compose-8.11.3.yml +++ /dev/null
@@ -1,157 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Apache Flagon Single-Node Build - -version: "3" -services: - - # Startup - startup: - build: ./startup - depends_on: - - "elasticsearch" - command: bash /opt/entrypoint.sh - - # Site - site: - build: ./site - ports: - - 8080:8080 - depends_on: - - "logstash" - command: python -m http.server 8080 - - # Elasticsearch - elasticsearch: - build: ./elasticsearch/8.11.3 - environment: - - INITIAL_MASTER_NODES=elasticsearch - - "DISCOVERY_SERVICE=0.0.0.0" - - NETWORK_HOST=0.0.0.0 - - HTTP_CORS_ENABLE=true - - HTTP_CORS_ALLOW_ORIGIN=* - - "ES_JAVA_OPTS=-Xms512m -Xmx512m" - ulimits: - memlock: - soft: -1 - hard: -1 - healthcheck: - test: ["CMD", "curl","-s" ,"-f", "-u", "http://localhost:9200/_cluster/health"] - # Mount volumes to backup elasticsearch data - volumes: -# - esdata:/usr/share/elasticsaerch/data - - ./elasticsearch/8.11.3/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml:ro,Z - ports: - - "9200:9200" - networks: - - esnet - - # Kibana - kibana: - build: ./kibana/8.11.3 - environment: - - "ES_JAVA_OPTS=-Xms512m -Xmx512m" - - "ELASTICSEARCH_URL=http://elasticsearch:9200" - ports: - - "5601:5601" - depends_on: - - "elasticsearch" - networks: - - esnet - - # Logstash - logstash: - build: ./logstash/8.11.3 - environment: - - "ELASTICSEARCH_URL=elasticsearch:9200" - ports: - - 8100:8100 - volumes: - - ./logstash/8.11.3/pipeline/logstash-userale.conf:/usr/share/logstash/pipeline/logstash-userale.conf - - ./logstash/8.11.3/templates/userale.json:/usr/share/logstash/templates/userale.json - depends_on: - - "elasticsearch" - networks: - - esnet - - # Distill - distill: - build: ./distill - ports: - - 8090:8090 - depends_on: - - "elasticsearch" - networks: - - esnet - - # TAP's Database - db: - build: ./db - image: senssoft/postgres:latest - ports: - - "5432:5432" - - # TAP - tap: - build: ./tap - command: bash -c "/usr/src/app/wait-for-postgres.sh" - ports: - - "8010:8010" - depends_on: - - db - links: - - db:db - - # Specific container and configuration to monitor the HOST (filesystem, memory, processes,...) - metricbeat: - image: docker.elastic.co/beats/metricbeat:8.11.3 -# restart: unless-stopped - user: root - pid: host - volumes: - #The commented sections below enable Metricbeat to monitor the Docker host - #rather than the Metricbeat container. These are used by the system module. - - /proc:/hostfs/proc:ro - - /sys/fs/cgroup:/hostfs/sys/fs/cgroup:ro - #We mount the host filesystem so we can report on disk usage with the system module - - /:/hostfs:ro - #Mount the metricbeat configuration so users can make edits - - ./beats/metricbeat/metricbeat.yml:/usr/share/metricbeat/metricbeat.yml - #Mount the modules.d directory into the container. This allows user to - #potentially make changes to the modules and they will be dynamically loaded. - - ./beats/metricbeat/modules.d/:/usr/share/metricbeat/modules.d/ - #Allows us to report on docker from the hosts information - - /var/run/docker.sock:/var/run/docker.sock - depends_on: - - elasticsearch - environment: - - ELASTICSEARCH_URL=http://elasticsearch:9200 - - KIBANA_URL=http://kibana:5601 - - LOGSTASH_URL=http://logstash:9600 - - POSTGRESQL_URL="postgresql://db:5432/tapdb?sslmode=disable" - - POSTGRESQL_USERNAME=tapuser - - POSTGRESQL_PASSWORD="Dr@p3rUs3r" - extra_hosts: - - "elasticsearch:172.17.0.1" # The IP of docker0 interface to access host from container - - "kibana:172.17.0.1" # The IP of docker0 interface to access host from container - - "logstash:172.17.0.1" - - "db:172.17.0.1" - command: metricbeat -e -system.hostfs=/hostfs -strict.perms=false - network_mode: host # Mandatory to monitor HOST filesystem, memory, processes,... - -network: - name: - external: true \ No newline at end of file
diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 86e3921..d263dbb 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml
@@ -1,21 +1,5 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. +version: '3.7' -# Apache Flagon Single-Node Build - -version: "3" services: # Site @@ -27,96 +11,114 @@ - "logstash" command: python -m http.server 8080 - # Elasticsearch + # The 'setup' service runs a one-off script which initializes users inside + # Elasticsearch — such as 'logstash_internal' and 'kibana_system' — with the + # values of the passwords defined in the '.env' file. It also creates the + # roles required by some of these users. + # + # This task only needs to be performed once, during the *initial* startup of + # the stack. Any subsequent run will reset the passwords of existing users to + # the values defined inside the '.env' file, and the built-in roles to their + # default permissions. + # + # By default, it is excluded from the services started by 'docker compose up' + # due to the non-default profile it belongs to. To run it, either provide the + # '--profile=setup' CLI flag to Compose commands, or "up" the service by name + # such as 'docker compose up setup'. + setup: + profiles: + - setup + build: + context: setup/ + args: + ELASTIC_VERSION: ${ELASTIC_VERSION} + init: true + volumes: + - ./setup/entrypoint.sh:/entrypoint.sh:ro,Z + - ./setup/lib.sh:/lib.sh:ro,Z + - ./setup/roles:/roles:ro,Z + environment: + ELASTIC_PASSWORD: ${ELASTIC_PASSWORD:-} + LOGSTASH_INTERNAL_PASSWORD: ${LOGSTASH_INTERNAL_PASSWORD:-} + KIBANA_SYSTEM_PASSWORD: ${KIBANA_SYSTEM_PASSWORD:-} + METRICBEAT_INTERNAL_PASSWORD: ${METRICBEAT_INTERNAL_PASSWORD:-} + FILEBEAT_INTERNAL_PASSWORD: ${FILEBEAT_INTERNAL_PASSWORD:-} + HEARTBEAT_INTERNAL_PASSWORD: ${HEARTBEAT_INTERNAL_PASSWORD:-} + MONITORING_INTERNAL_PASSWORD: ${MONITORING_INTERNAL_PASSWORD:-} + BEATS_SYSTEM_PASSWORD: ${BEATS_SYSTEM_PASSWORD:-} + networks: + - elk + depends_on: + - elasticsearch + elasticsearch: - build: ./elasticsearch/8.11.3 - environment: - - INITIAL_MASTER_NODES=elasticsearch - - "DISCOVERY_SERVICE=0.0.0.0" - - NETWORK_HOST=0.0.0.0 - - HTTP_CORS_ENABLE=true - - HTTP_CORS_ALLOW_ORIGIN=* - - "ES_JAVA_OPTS=-Xms512m -Xmx512m" - ulimits: - memlock: - soft: -1 - hard: -1 - healthcheck: - test: ["CMD", "curl","-s" ,"-f", "-u", "http://localhost:9200/_cluster/health"] - # Mount volumes to backup elasticsearch data + build: + context: elasticsearch/ + args: + ELASTIC_VERSION: ${ELASTIC_VERSION} volumes: -# - esdata:/usr/share/elasticsaerch/data - - ./elasticsearch/8.11.3/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml:ro,Z - user: "1000:0" + - ./elasticsearch/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml:ro,Z + - elasticsearch:/usr/share/elasticsearch/data:Z ports: - - "9200:9200" - networks: - - esnet - - # Kibana - kibana: - build: ./kibana/8.11.3 + - 9200:9200 + - 9300:9300 environment: - - "ES_JAVA_OPTS=-Xms512m -Xmx512m" - - "ELASTICSEARCH_URL=http://elasticsearch:9200" - user: "1000:0" - ports: - - "5601:5601" - depends_on: - - "elasticsearch" + node.name: elasticsearch + ES_JAVA_OPTS: -Xms512m -Xmx512m + # Bootstrap password. + # Used to initialize the keystore during the initial startup of + # Elasticsearch. Ignored on subsequent runs. + ELASTIC_PASSWORD: ${ELASTIC_PASSWORD:-} + # Use single node discovery in order to disable production mode and avoid bootstrap checks. + # see: https://www.elastic.co/guide/en/elasticsearch/reference/current/bootstrap-checks.html + discovery.type: single-node networks: - - esnet + - elk + restart: unless-stopped - # Logstash logstash: - build: ./logstash/8.11.3 - environment: - - "ELASTICSEARCH_URL=elasticsearch:9200" - user: "1000:0" + build: + context: logstash/ + args: + ELASTIC_VERSION: ${ELASTIC_VERSION} + volumes: + - ./logstash/config/logstash.yml:/usr/share/logstash/config/logstash.yml:ro,Z + - ./logstash/pipeline:/usr/share/logstash/pipeline:ro,Z + - ./logstash/templates:/usr/share/logstash/templates:ro,z ports: - - 8100:8100 - volumes: - - ./logstash/8.11.3/pipeline/logstash-userale.conf:/usr/share/logstash/pipeline/logstash-userale.conf - - ./logstash/8.11.3/templates/userale.json:/usr/share/logstash/templates/userale.json - depends_on: - - "elasticsearch" - networks: - - esnet - - # Specific container and configuration to monitor the HOST (filesystem, memory, processes,...) - metricbeat: - image: docker.elastic.co/beats/metricbeat:8.11.3 -# restart: unless-stopped - user: root - pid: host - volumes: - #The commented sections below enable Metricbeat to monitor the Docker host - #rather than the Metricbeat container. These are used by the system module. - - /proc:/hostfs/proc:ro - - /sys/fs/cgroup:/hostfs/sys/fs/cgroup:ro - #We mount the host filesystem so we can report on disk usage with the system module - - /:/hostfs:ro - #Mount the metricbeat configuration so users can make edits - - ./beats/metricbeat/metricbeat.yml:/usr/share/metricbeat/metricbeat.yml - #Mount the modules.d directory into the container. This allows user to - #potentially make changes to the modules and they will be dynamically loaded. - - ./beats/metricbeat/modules.d/:/usr/share/metricbeat/modules.d/ - #Allows us to report on docker from the hosts information - - /var/run/docker.sock:/var/run/docker.sock - depends_on: - - kibana + - 5044:5044 + - 50000:50000/tcp + - 50000:50000/udp + - 9600:9600 environment: - - ELASTICSEARCH_URL=http://elasticsearch:9200 - - KIBANA_URL=http://kibana:5601 - - LOGSTASH_URL=http://logstash:9600 - extra_hosts: - - "elasticsearch:172.17.0.1" # The IP of docker0 interface to access host from container - - "kibana:172.17.0.1" # The IP of docker0 interface to access host from container - - "logstash:172.17.0.1" - command: metricbeat -e -system.hostfs=/hostfs -strict.perms=false - network_mode: host # Mandatory to monitor HOST filesystem, memory, processes,... + LS_JAVA_OPTS: -Xms256m -Xmx256m + LOGSTASH_INTERNAL_PASSWORD: ${LOGSTASH_INTERNAL_PASSWORD:-} + networks: + - elk + depends_on: + - elasticsearch + restart: unless-stopped + + kibana: + build: + context: kibana/ + args: + ELASTIC_VERSION: ${ELASTIC_VERSION} + volumes: + - ./kibana/config/kibana.yml:/usr/share/kibana/config/kibana.yml:ro,Z + ports: + - 5601:5601 + environment: + KIBANA_SYSTEM_PASSWORD: ${KIBANA_SYSTEM_PASSWORD:-} + networks: + - elk + depends_on: + - elasticsearch + restart: unless-stopped networks: - esnet: - name: esnet - external: true + elk: + driver: bridge + +volumes: + elasticsearch:
diff --git a/docker/docs/images/DockerBeats_Dashboard.png b/docker/docs/images/DockerBeats_Dashboard.png deleted file mode 100644 index 6a0ae0c..0000000 --- a/docker/docs/images/DockerBeats_Dashboard.png +++ /dev/null Binary files differ
diff --git a/docker/docs/images/configure_index.png b/docker/docs/images/configure_index.png deleted file mode 100644 index 31ebe02..0000000 --- a/docker/docs/images/configure_index.png +++ /dev/null Binary files differ
diff --git a/docker/docs/images/confirmation.png b/docker/docs/images/confirmation.png deleted file mode 100644 index 467b4d4..0000000 --- a/docker/docs/images/confirmation.png +++ /dev/null Binary files differ
diff --git a/docker/docs/images/dashboard.png b/docker/docs/images/dashboard.png deleted file mode 100644 index b693e80..0000000 --- a/docker/docs/images/dashboard.png +++ /dev/null Binary files differ
diff --git a/docker/docs/images/kibana_Discover.png b/docker/docs/images/kibana_Discover.png deleted file mode 100644 index 25ce975..0000000 --- a/docker/docs/images/kibana_Discover.png +++ /dev/null Binary files differ
diff --git a/docker/docs/images/management.png b/docker/docs/images/management.png deleted file mode 100644 index 90a26ae..0000000 --- a/docker/docs/images/management.png +++ /dev/null Binary files differ
diff --git a/docker/docs/images/viz_import.png b/docker/docs/images/viz_import.png deleted file mode 100644 index 110cadd..0000000 --- a/docker/docs/images/viz_import.png +++ /dev/null Binary files differ
diff --git a/docker/elasticsearch/.dockerignore b/docker/elasticsearch/.dockerignore new file mode 100644 index 0000000..37eef9d --- /dev/null +++ b/docker/elasticsearch/.dockerignore
@@ -0,0 +1,6 @@ +# Ignore Docker build files +Dockerfile +.dockerignore + +# Ignore OS artifacts +**/.DS_Store
diff --git a/docker/elasticsearch/.env b/docker/elasticsearch/.env deleted file mode 100644 index f322e1a..0000000 --- a/docker/elasticsearch/.env +++ /dev/null
@@ -1,8 +0,0 @@ -NODE_MASTER=true -NODE_DATA=true -NETWORK_HOST=0.0.0.0 -NODE_COORDINATE=false -HTTP_ENABLE=true -HTTP_CORS_ENABLE=true -HTTP_CORS_ALLOW_ORIGIN="127.0.0.1" -DISCOVERY_TIMETOUT=10s \ No newline at end of file
diff --git a/docker/elasticsearch/5.6.3/Dockerfile b/docker/elasticsearch/5.6.3/Dockerfile deleted file mode 100644 index 4f1e5c9..0000000 --- a/docker/elasticsearch/5.6.3/Dockerfile +++ /dev/null
@@ -1,29 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM docker.elastic.co/elasticsearch/elasticsearch:5.6.3 - -MAINTAINER Michelle Beard <msbeard@apache.org> - -# Override config -COPY config /usr/share/elasticsearch/config - -# Set environment -ENV CLUSTER_NAME SensSoft - -# Kubernetes requires swap is turned off -ENV MEMORY_LOCK false - -EXPOSE 9200 \ No newline at end of file
diff --git a/docker/elasticsearch/5.6.3/config/elasticsearch.yml b/docker/elasticsearch/5.6.3/config/elasticsearch.yml deleted file mode 100644 index 66eba53..0000000 --- a/docker/elasticsearch/5.6.3/config/elasticsearch.yml +++ /dev/null
@@ -1,54 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -cluster: - name: ${CLUSTER_NAME} - -node: - master: ${NODE_MASTER} - data: ${NODE_DATA} - ingest: ${NODE_INGEST} - max_local_storage_nodes: ${MAX_LOCAL_STORAGE_NODES} - -network.host: ${NETWORK_HOST} - -search.remote.connect: ${NODE_COORDINATE} - -path: - data: /usr/share/elasticsearch/data - logs: /usr/share/elasticsearch/log - -bootstrap: - memory_lock: ${MEMORY_LOCK} - -http: - enabled: ${HTTP_ENABLE} - compression: true - cors: - enabled: ${HTTP_CORS_ENABLE} - allow-origin: ${HTTP_CORS_ALLOW_ORIGIN} - -# Disable X-Pack -xpack.ml.enabled: false -xpack.monitoring.enabled: false -xpack.security.enabled: false -xpack.watcher.enabled: false - -# Prevent the "split brain" by configuring the majority of nodes (total number of nodes / 2 + 1): -discovery: - zen: - ping.unicast.hosts: ${DISCOVERY_SERVICE} - minimum_master_nodes: ${NUMBER_OF_MASTERS} -
diff --git a/docker/elasticsearch/5.6.3/config/log4j2.properties b/docker/elasticsearch/5.6.3/config/log4j2.properties deleted file mode 100644 index 7f7817d..0000000 --- a/docker/elasticsearch/5.6.3/config/log4j2.properties +++ /dev/null
@@ -1,24 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -status = error - -appender.console.type = Console -appender.console.name = console -appender.console.layout.type = PatternLayout -appender.console.layout.pattern = [%d{ISO8601}][%-5p][%-25c{1.}] %marker%m%n - -rootLogger.level = info -rootLogger.appenderRef.console.ref = console \ No newline at end of file
diff --git a/docker/elasticsearch/6.2.2/Dockerfile b/docker/elasticsearch/6.2.2/Dockerfile deleted file mode 100644 index f1fe259..0000000 --- a/docker/elasticsearch/6.2.2/Dockerfile +++ /dev/null
@@ -1,30 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM docker.elastic.co/elasticsearch/elasticsearch-oss:6.2.2 - -MAINTAINER Michelle Beard <msbeard@apache.org> - -# Override config -COPY config /usr/share/elasticsearch/config -RUN chown -R elasticsearch:elasticsearch /usr/share/elasticsearch/config - -# Set environment -ENV CLUSTER_NAME SensSoft - -# Kubernetes requires swap is turned off -ENV MEMORY_LOCK false - -EXPOSE 9200 \ No newline at end of file
diff --git a/docker/elasticsearch/6.2.2/config/elasticsearch.yml b/docker/elasticsearch/6.2.2/config/elasticsearch.yml deleted file mode 100644 index 5525441..0000000 --- a/docker/elasticsearch/6.2.2/config/elasticsearch.yml +++ /dev/null
@@ -1,51 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Custom config borrowed from Pires: https://github.com/pires/docker-elasticsearch-kubernetes - -cluster: - name: ${CLUSTER_NAME:SensSoft} - -node: - master: ${NODE_MASTER:true} - data: ${NODE_DATA:true} - name: ${NODE_NAME:${HOSTNAME}} - ingest: ${NODE_INGEST:true} - max_local_storage_nodes: ${MAX_LOCAL_STORAGE_NODES:1} - -network.host: ${NETWORK_HOST:0.0.0.0} - -search.remote.connect: ${NODE_COORDINATE:true} - -path: - data: /usr/share/elasticsearch/data - logs: /usr/share/elasticsearch/log - -bootstrap: - memory_lock: ${MEMORY_LOCK} - -http: - enabled: ${HTTP_ENABLE:true} - compression: true - cors: - enabled: ${HTTP_CORS_ENABLE:true} - allow-origin: ${HTTP_CORS_ALLOW_ORIGIN:"*"} - -# Prevent the "split brain" by configuring the majority of nodes (total number of nodes / 2 + 1): -discovery: - zen: - ping.unicast.hosts: ${DISCOVERY_SERVICE:127.0.0.1, [::1]} - ping.unicast.hosts.resolve_timeout: ${DISCOVERY_TIMEOUT:5s} - minimum_master_nodes: ${NUMBER_OF_MASTERS:1}
diff --git a/docker/elasticsearch/6.2.2/config/log4j2.properties b/docker/elasticsearch/6.2.2/config/log4j2.properties deleted file mode 100644 index 7f7817d..0000000 --- a/docker/elasticsearch/6.2.2/config/log4j2.properties +++ /dev/null
@@ -1,24 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -status = error - -appender.console.type = Console -appender.console.name = console -appender.console.layout.type = PatternLayout -appender.console.layout.pattern = [%d{ISO8601}][%-5p][%-25c{1.}] %marker%m%n - -rootLogger.level = info -rootLogger.appenderRef.console.ref = console \ No newline at end of file
diff --git a/docker/elasticsearch/6.5.4/Dockerfile b/docker/elasticsearch/6.5.4/Dockerfile deleted file mode 100644 index dc4ffeb..0000000 --- a/docker/elasticsearch/6.5.4/Dockerfile +++ /dev/null
@@ -1,30 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM docker.elastic.co/elasticsearch/elasticsearch-oss:6.5.4 - -MAINTAINER Michelle Beard <msbeard@apache.org> - -# Override config -COPY config /usr/share/elasticsearch/config -RUN chown -R elasticsearch:elasticsearch /usr/share/elasticsearch/config - -# Set environment -ENV CLUSTER_NAME SensSoft - -# Kubernetes requires swap is turned off -ENV MEMORY_LOCK false - -EXPOSE 9200 \ No newline at end of file
diff --git a/docker/elasticsearch/6.5.4/config/elasticsearch.yml b/docker/elasticsearch/6.5.4/config/elasticsearch.yml deleted file mode 100644 index 5525441..0000000 --- a/docker/elasticsearch/6.5.4/config/elasticsearch.yml +++ /dev/null
@@ -1,51 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Custom config borrowed from Pires: https://github.com/pires/docker-elasticsearch-kubernetes - -cluster: - name: ${CLUSTER_NAME:SensSoft} - -node: - master: ${NODE_MASTER:true} - data: ${NODE_DATA:true} - name: ${NODE_NAME:${HOSTNAME}} - ingest: ${NODE_INGEST:true} - max_local_storage_nodes: ${MAX_LOCAL_STORAGE_NODES:1} - -network.host: ${NETWORK_HOST:0.0.0.0} - -search.remote.connect: ${NODE_COORDINATE:true} - -path: - data: /usr/share/elasticsearch/data - logs: /usr/share/elasticsearch/log - -bootstrap: - memory_lock: ${MEMORY_LOCK} - -http: - enabled: ${HTTP_ENABLE:true} - compression: true - cors: - enabled: ${HTTP_CORS_ENABLE:true} - allow-origin: ${HTTP_CORS_ALLOW_ORIGIN:"*"} - -# Prevent the "split brain" by configuring the majority of nodes (total number of nodes / 2 + 1): -discovery: - zen: - ping.unicast.hosts: ${DISCOVERY_SERVICE:127.0.0.1, [::1]} - ping.unicast.hosts.resolve_timeout: ${DISCOVERY_TIMEOUT:5s} - minimum_master_nodes: ${NUMBER_OF_MASTERS:1}
diff --git a/docker/elasticsearch/6.5.4/config/log4j2.properties b/docker/elasticsearch/6.5.4/config/log4j2.properties deleted file mode 100644 index c86c995..0000000 --- a/docker/elasticsearch/6.5.4/config/log4j2.properties +++ /dev/null
@@ -1,24 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -status = error - -appender.console.type = Console -appender.console.name = console -appender.console.layout.type = PatternLayout -appender.console.layout.pattern = [%d{ISO8601}][%-5p][%-25c{1.}] [%node_name] %marker%m%n - -rootLogger.level = info -rootLogger.appenderRef.console.ref = console \ No newline at end of file
diff --git a/docker/elasticsearch/6.6.2/Dockerfile b/docker/elasticsearch/6.6.2/Dockerfile deleted file mode 100644 index 10516b7..0000000 --- a/docker/elasticsearch/6.6.2/Dockerfile +++ /dev/null
@@ -1,30 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM docker.elastic.co/elasticsearch/elasticsearch-oss:6.6.2 - -MAINTAINER Joshua Poore <poorejc@apache.org> - -# Override config -COPY config /usr/share/elasticsearch/config -RUN chown -R elasticsearch:elasticsearch /usr/share/elasticsearch/config - -# Set environment -ENV CLUSTER_NAME Flagon - -# Kubernetes requires swap is turned off -ENV MEMORY_LOCK false - -EXPOSE 9200 \ No newline at end of file
diff --git a/docker/elasticsearch/6.6.2/config/elasticsearch.yml b/docker/elasticsearch/6.6.2/config/elasticsearch.yml deleted file mode 100644 index a819696..0000000 --- a/docker/elasticsearch/6.6.2/config/elasticsearch.yml +++ /dev/null
@@ -1,51 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Custom config borrowed from Pires: https://github.com/pires/docker-elasticsearch-kubernetes - -cluster: - name: ${CLUSTER_NAME:FLAGON} - -node: - master: ${NODE_MASTER:true} - data: ${NODE_DATA:true} - name: ${NODE_NAME:${HOSTNAME}} - ingest: ${NODE_INGEST:true} - max_local_storage_nodes: ${MAX_LOCAL_STORAGE_NODES:1} - -network.host: ${NETWORK_HOST:0.0.0.0} - -search.remote.connect: ${NODE_COORDINATE:true} - -path: - data: /usr/share/elasticsearch/data - logs: /usr/share/elasticsearch/log - -bootstrap: - memory_lock: ${MEMORY_LOCK} - -http: - enabled: ${HTTP_ENABLE:true} - compression: true - cors: - enabled: ${HTTP_CORS_ENABLE:true} - allow-origin: ${HTTP_CORS_ALLOW_ORIGIN:"*"} - -# Prevent the "split brain" by configuring the majority of nodes (total number of nodes / 2 + 1): -discovery: - zen: - ping.unicast.hosts: ${DISCOVERY_SERVICE:127.0.0.1, [::1]} - ping.unicast.hosts.resolve_timeout: ${DISCOVERY_TIMEOUT:5s} - minimum_master_nodes: ${NUMBER_OF_MASTERS:1}
diff --git a/docker/elasticsearch/6.6.2/config/log4j2.properties b/docker/elasticsearch/6.6.2/config/log4j2.properties deleted file mode 100644 index c86c995..0000000 --- a/docker/elasticsearch/6.6.2/config/log4j2.properties +++ /dev/null
@@ -1,24 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -status = error - -appender.console.type = Console -appender.console.name = console -appender.console.layout.type = PatternLayout -appender.console.layout.pattern = [%d{ISO8601}][%-5p][%-25c{1.}] [%node_name] %marker%m%n - -rootLogger.level = info -rootLogger.appenderRef.console.ref = console \ No newline at end of file
diff --git a/docker/elasticsearch/6.8.2/Dockerfile b/docker/elasticsearch/6.8.2/Dockerfile deleted file mode 100644 index c0d4698..0000000 --- a/docker/elasticsearch/6.8.2/Dockerfile +++ /dev/null
@@ -1,30 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM docker.elastic.co/elasticsearch/elasticsearch-oss:6.8.2 - -MAINTAINER Joshua Poore <poorejc@apache.org> - -# Override config -COPY config /usr/share/elasticsearch/config -RUN chown -R elasticsearch:elasticsearch /usr/share/elasticsearch/config - -# Set environment -ENV CLUSTER_NAME Flagon - -# Kubernetes requires swap is turned off -ENV MEMORY_LOCK false - -EXPOSE 9200 \ No newline at end of file
diff --git a/docker/elasticsearch/6.8.2/config/elasticsearch.yml b/docker/elasticsearch/6.8.2/config/elasticsearch.yml deleted file mode 100644 index a819696..0000000 --- a/docker/elasticsearch/6.8.2/config/elasticsearch.yml +++ /dev/null
@@ -1,51 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Custom config borrowed from Pires: https://github.com/pires/docker-elasticsearch-kubernetes - -cluster: - name: ${CLUSTER_NAME:FLAGON} - -node: - master: ${NODE_MASTER:true} - data: ${NODE_DATA:true} - name: ${NODE_NAME:${HOSTNAME}} - ingest: ${NODE_INGEST:true} - max_local_storage_nodes: ${MAX_LOCAL_STORAGE_NODES:1} - -network.host: ${NETWORK_HOST:0.0.0.0} - -search.remote.connect: ${NODE_COORDINATE:true} - -path: - data: /usr/share/elasticsearch/data - logs: /usr/share/elasticsearch/log - -bootstrap: - memory_lock: ${MEMORY_LOCK} - -http: - enabled: ${HTTP_ENABLE:true} - compression: true - cors: - enabled: ${HTTP_CORS_ENABLE:true} - allow-origin: ${HTTP_CORS_ALLOW_ORIGIN:"*"} - -# Prevent the "split brain" by configuring the majority of nodes (total number of nodes / 2 + 1): -discovery: - zen: - ping.unicast.hosts: ${DISCOVERY_SERVICE:127.0.0.1, [::1]} - ping.unicast.hosts.resolve_timeout: ${DISCOVERY_TIMEOUT:5s} - minimum_master_nodes: ${NUMBER_OF_MASTERS:1}
diff --git a/docker/elasticsearch/6.8.2/config/log4j2.properties b/docker/elasticsearch/6.8.2/config/log4j2.properties deleted file mode 100644 index c86c995..0000000 --- a/docker/elasticsearch/6.8.2/config/log4j2.properties +++ /dev/null
@@ -1,24 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -status = error - -appender.console.type = Console -appender.console.name = console -appender.console.layout.type = PatternLayout -appender.console.layout.pattern = [%d{ISO8601}][%-5p][%-25c{1.}] [%node_name] %marker%m%n - -rootLogger.level = info -rootLogger.appenderRef.console.ref = console \ No newline at end of file
diff --git a/docker/elasticsearch/8.11.3/Dockerfile b/docker/elasticsearch/8.11.3/Dockerfile deleted file mode 100644 index e3e5d3a..0000000 --- a/docker/elasticsearch/8.11.3/Dockerfile +++ /dev/null
@@ -1,24 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM docker.elastic.co/elasticsearch/elasticsearch:8.11.3 - -# Set environment -ENV CLUSTER_NAME Flagon - -# Kubernetes requires swap is turned off -ENV MEMORY_LOCK false - -EXPOSE 9200 \ No newline at end of file
diff --git a/docker/elasticsearch/8.11.3/config/elasticsearch.yml b/docker/elasticsearch/8.11.3/config/elasticsearch.yml deleted file mode 100644 index caaf7ea..0000000 --- a/docker/elasticsearch/8.11.3/config/elasticsearch.yml +++ /dev/null
@@ -1,70 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Custom config borrowed from Pires: https://github.com/pires/docker-elasticsearch-kubernetes - -cluster: - name: ${CLUSTER_NAME:FLAGON} - initial_master_nodes: ["${INITIAL_MASTER_NODES:elasticsearch}"] - -node: - name: ${NODE_NAME:elasticsearch} - -network.host: ${NETWORK_HOST:0.0.0.0} - -path: - data: /usr/share/elasticsearch/data - logs: /usr/share/elasticsearch/log - -bootstrap: - memory_lock: ${MEMORY_LOCK} - -http: - compression: true - cors: - enabled: ${HTTP_CORS_ENABLE:true} - allow-origin: ${HTTP_CORS_ALLOW_ORIGIN:"*"} - -# Prevent the "split brain" by configuring the majority of nodes (total number of nodes / 2 + 1): -discovery: - seed_hosts: ["${DISCOVERY_SERVICE:0.0.0.0}"] - -## X-Pack settings -## see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-settings.html -# -xpack.license.self_generated.type: trial -xpack.security.enabled: false - -## -## TLS configuration -## See instructions from README to enable. -## - -## Communications between nodes in a cluster -## see https://www.elastic.co/guide/en/elasticsearch/reference/current/configuring-tls.html#tls-transport -# -#xpack.security.transport.ssl.enabled: true -#xpack.security.transport.ssl.verification_mode: certificate -#xpack.security.transport.ssl.certificate_authorities: [ ca.crt ] -#xpack.security.transport.ssl.certificate: elasticsearch.crt -#xpack.security.transport.ssl.key: elasticsearch.key - -## HTTP client communications -## see https://www.elastic.co/guide/en/elasticsearch/reference/current/configuring-tls.html#tls-http -# -#xpack.security.http.ssl.enabled: true -#xpack.security.http.ssl.certificate_authorities: [ ca.crt ] -#xpack.security.http.ssl.certificate: elasticsearch.crt -#xpack.security.http.ssl.key: elasticsearch.key \ No newline at end of file
diff --git a/docker/elasticsearch/8.11.3/config/log4j2.properties b/docker/elasticsearch/8.11.3/config/log4j2.properties deleted file mode 100644 index c86c995..0000000 --- a/docker/elasticsearch/8.11.3/config/log4j2.properties +++ /dev/null
@@ -1,24 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -status = error - -appender.console.type = Console -appender.console.name = console -appender.console.layout.type = PatternLayout -appender.console.layout.pattern = [%d{ISO8601}][%-5p][%-25c{1.}] [%node_name] %marker%m%n - -rootLogger.level = info -rootLogger.appenderRef.console.ref = console \ No newline at end of file
diff --git a/docker/elasticsearch/Dockerfile b/docker/elasticsearch/Dockerfile new file mode 100644 index 0000000..22528c6 --- /dev/null +++ b/docker/elasticsearch/Dockerfile
@@ -0,0 +1,7 @@ +ARG ELASTIC_VERSION + +# https://www.docker.elastic.co/ +FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION} + +# Add your elasticsearch plugins setup here +# Example: RUN elasticsearch-plugin install analysis-icu
diff --git a/docker/elasticsearch/config/elasticsearch.yml b/docker/elasticsearch/config/elasticsearch.yml new file mode 100644 index 0000000..d66f071 --- /dev/null +++ b/docker/elasticsearch/config/elasticsearch.yml
@@ -0,0 +1,12 @@ +--- +## Default Elasticsearch configuration from Elasticsearch base image. +## https://github.com/elastic/elasticsearch/blob/main/distribution/docker/src/docker/config/elasticsearch.yml +# +cluster.name: docker-cluster +network.host: 0.0.0.0 + +## X-Pack settings +## see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-settings.html +# +xpack.license.self_generated.type: trial +xpack.security.enabled: true
diff --git a/docker/kibana/.dockerignore b/docker/kibana/.dockerignore new file mode 100644 index 0000000..37eef9d --- /dev/null +++ b/docker/kibana/.dockerignore
@@ -0,0 +1,6 @@ +# Ignore Docker build files +Dockerfile +.dockerignore + +# Ignore OS artifacts +**/.DS_Store
diff --git a/docker/kibana/5.6.3/Dockerfile b/docker/kibana/5.6.3/Dockerfile deleted file mode 100644 index 9017f29..0000000 --- a/docker/kibana/5.6.3/Dockerfile +++ /dev/null
@@ -1,26 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM docker.elastic.co/kibana/kibana:5.6.3 - -MAINTAINER Michelle Beard <msbeard@apache.org> - -# Override config -COPY config /usr/share/kibana/config - -# Remove x-pack -RUN kibana-plugin remove x-pack - -EXPOSE 5601 \ No newline at end of file
diff --git a/docker/kibana/5.6.3/Saved Objects/Apache SensSoft Page Usage Dashboard.json b/docker/kibana/5.6.3/Saved Objects/Apache SensSoft Page Usage Dashboard.json deleted file mode 100644 index c9e569e..0000000 --- a/docker/kibana/5.6.3/Saved Objects/Apache SensSoft Page Usage Dashboard.json +++ /dev/null
@@ -1,18 +0,0 @@ -[ - { - "_id": "3f02bf70-12eb-11e9-a1e0-631cf5fb9335", - "_type": "dashboard", - "_source": { - "title": "Apache SensSoft Page Usage Dashboard", - "hits": 0, - "description": "Abstracts Multi-User Interaction with Single Pages/Apps. Ideal for script-tag, page-level UserALE.js deployments.", - "panelsJSON": "[{\"gridData\":{\"h\":15,\"i\":\"2\",\"w\":32,\"x\":16,\"y\":0},\"id\":\"f7ca4560-be7c-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"2\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"vis\":{\"defaultColors\":{\"0 - 400\":\"rgb(255,245,240)\",\"1,200 - 1,600\":\"rgb(203,24,29)\",\"400 - 800\":\"rgb(252,187,161)\",\"800 - 1,200\":\"rgb(251,106,74)\"},\"legendOpen\":false}},\"gridData\":{\"h\":15,\"i\":\"5\",\"w\":20,\"x\":12,\"y\":15},\"id\":\"429c0940-fce6-11e8-a156-87bcaf41506e\",\"panelIndex\":\"5\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"6\",\"w\":12,\"x\":0,\"y\":15},\"id\":\"5b467330-06e2-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"6\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":45,\"i\":\"7\",\"w\":48,\"x\":0,\"y\":45},\"id\":\"2bf40010-be7d-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"7\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"8\",\"w\":16,\"x\":0,\"y\":0},\"id\":\"ba30fd80-12ee-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"8\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"9\",\"w\":24,\"x\":0,\"y\":30},\"id\":\"bcd7c950-be7c-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"9\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"vis\":{\"legendOpen\":false}},\"gridData\":{\"h\":15,\"i\":\"10\",\"w\":16,\"x\":32,\"y\":15},\"id\":\"20b291b0-12f2-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"10\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"spy\":null},\"gridData\":{\"h\":15,\"i\":\"11\",\"w\":24,\"x\":24,\"y\":30},\"id\":\"bf327a20-12f3-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"11\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":40,\"i\":\"12\",\"w\":48,\"x\":0,\"y\":90},\"id\":\"887fec40-1886-11e9-bdac-e790c2bff4d4\",\"panelIndex\":\"12\",\"type\":\"visualization\",\"version\":\"6.5.4\"}]", - "optionsJSON": "{\"darkTheme\":true,\"useMargins\":false}", - "version": 1, - "timeRestore": false, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"URL Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"http://senssoft.incubator.apache.org/\"},\"query\":{\"match\":{\"pageUrl\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":null,\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"toolName\",\"negate\":false,\"params\":{\"query\":\"MyApp\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"MyApp\"},\"query\":{\"match\":{\"toolName\":{\"query\":\"MyApp\",\"type\":\"phrase\"}}}}],\"highlightAll\":true,\"version\":true,\"query\":{\"query\":\"*\",\"language\":\"lucene\"}}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/5.6.3/Saved Objects/Apache SensSoft User Access Dashboard.json b/docker/kibana/5.6.3/Saved Objects/Apache SensSoft User Access Dashboard.json deleted file mode 100644 index c2a08ff..0000000 --- a/docker/kibana/5.6.3/Saved Objects/Apache SensSoft User Access Dashboard.json +++ /dev/null
@@ -1,18 +0,0 @@ -[ - { - "_id": "ab9f1f90-fce6-11e8-a156-87bcaf41506e", - "_type": "dashboard", - "_source": { - "title": "Apache SensSoft User Access Dashboard", - "hits": 0, - "description": "Abstracts Multi-User Utilization of IT Assets (and Web Usage). Ideal for UserALE.js Web Extension deployments.", - "panelsJSON": "[{\"panelIndex\":\"2\",\"gridData\":{\"x\":16,\"y\":0,\"w\":32,\"h\":15,\"i\":\"2\"},\"id\":\"f7ca4560-be7c-11e7-8adf-fd0a12531eca\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"panelIndex\":\"4\",\"gridData\":{\"x\":0,\"y\":0,\"w\":12,\"h\":15,\"i\":\"4\"},\"embeddableConfig\":{\"spy\":null},\"id\":\"e36b1f40-be7c-11e7-8adf-fd0a12531eca\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"panelIndex\":\"5\",\"gridData\":{\"x\":12,\"y\":15,\"w\":36,\"h\":15,\"i\":\"5\"},\"id\":\"429c0940-fce6-11e8-a156-87bcaf41506e\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"panelIndex\":\"6\",\"gridData\":{\"x\":0,\"y\":15,\"w\":12,\"h\":15,\"i\":\"6\"},\"id\":\"5b467330-06e2-11e9-8c58-f38cfff498f6\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"panelIndex\":\"7\",\"gridData\":{\"x\":12,\"y\":45,\"w\":36,\"h\":15,\"i\":\"7\"},\"id\":\"e1b6c290-06e1-11e9-8c58-f38cfff498f6\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"panelIndex\":\"8\",\"gridData\":{\"x\":0,\"y\":30,\"w\":48,\"h\":15,\"i\":\"8\"},\"embeddableConfig\":{\"vis\":{\"colors\":{\"0 - 6\":\"#FCE2DE\"},\"defaultColors\":{\"0 - 6\":\"rgb(255,245,240)\",\"11 - 17\":\"rgb(251,106,74)\",\"17 - 22\":\"rgb(203,24,29)\",\"6 - 11\":\"rgb(252,187,161)\"},\"legendOpen\":true}},\"id\":\"d5a95ce0-06e3-11e9-8c58-f38cfff498f6\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"panelIndex\":\"9\",\"gridData\":{\"x\":0,\"y\":45,\"w\":12,\"h\":15,\"i\":\"9\"},\"id\":\"5eeda1e0-06e5-11e9-8c58-f38cfff498f6\",\"type\":\"visualization\",\"version\":\"6.5.4\"}]", - "optionsJSON": "{\"darkTheme\":true,\"useMargins\":false}", - "version": 1, - "timeRestore": false, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"URL Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":[\"http://senssoft.incubator.apache.org/\"],\"type\":\"phrases\",\"value\":\"http://senssoft.incubator.apache.org/\"},\"query\":{\"bool\":{\"minimum_should_match\":1,\"should\":[{\"match_phrase\":{\"pageUrl\":\"http://senssoft.incubator.apache.org/\"}}]}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":null,\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":[\"https://github.com/apache/incubator-senssoft\"],\"type\":\"phrases\",\"value\":\"https://github.com/apache/incubator-senssoft\"},\"query\":{\"bool\":{\"minimum_should_match\":1,\"should\":[{\"match_phrase\":{\"pageUrl\":\"https://github.com/apache/incubator-senssoft\"}}]}}}],\"highlightAll\":true,\"version\":true,\"query\":{\"language\":\"lucene\",\"query\":{\"query_string\":{\"analyze_wildcard\":true,\"default_field\":\"*\",\"query\":\"*\"}}}}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/5.6.3/Saved Objects/Apache SensSoft Visualizations.json b/docker/kibana/5.6.3/Saved Objects/Apache SensSoft Visualizations.json deleted file mode 100644 index 34ba9f0..0000000 --- a/docker/kibana/5.6.3/Saved Objects/Apache SensSoft Visualizations.json +++ /dev/null
@@ -1,226 +0,0 @@ -[ - { - "_id": "bcd7c950-be7c-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Top Event Types", - "visState": "{\"title\":\"Top Event Types\",\"type\":\"pie\",\"params\":{\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"isDonut\":false},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Top Event Types\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"type\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Event types\"}}],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true}},\"language\":\"lucene\"},\"filter\":[]}" - } - } - }, - { - "_id": "e36b1f40-be7c-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Total Number of Logs", - "visState": "{\"title\":\"Total Number of Logs\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total number of logs\"}}],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true}},\"language\":\"lucene\"},\"filter\":[]}" - } - } - }, - { - "_id": "2bf40010-be7d-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Events by Targets", - "visState": "{\"title\":\"Events by Targets\",\"type\":\"histogram\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"show\":true,\"truncate\":100},\"position\":\"bottom\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"HTML Tags\"},\"type\":\"category\"}],\"defaultYExtents\":false,\"drawLinesBetweenPoints\":true,\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"interpolate\":\"linear\",\"legendPosition\":\"right\",\"radiusRatio\":9,\"scale\":\"linear\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Count\"},\"drawLinesBetweenPoints\":true,\"mode\":\"stacked\",\"show\":\"true\",\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"setYExtents\":false,\"showCircles\":true,\"times\":[],\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"left\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"HTML Tags\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"type\",\"size\":20,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"JS Events\"}}],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true}},\"language\":\"lucene\"},\"filter\":[]}" - } - } - }, - { - "_id": "64045a30-fce4-11e8-a156-87bcaf41506e", - "_type": "visualization", - "_source": { - "title": "Total Logs by Unique Hosts", - "visState": "{\"title\":\"Total Logs by Unique Hosts\",\"type\":\"horizontal_bar\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":200},\"position\":\"left\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"category\"}],\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"legendPosition\":\"right\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Total Logs\"},\"drawLinesBetweenPoints\":true,\"mode\":\"normal\",\"show\":true,\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":true,\"rotate\":75,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"bottom\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Total Logs\"},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"host\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Unique Hosts\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"filter\":[],\"query\":{\"language\":\"lucene\",\"query\":\"\"}}" - } - } - }, - { - "_id": "429c0940-fce6-11e8-a156-87bcaf41506e", - "_type": "visualization", - "_source": { - "title": "Host Activity By Day", - "visState": "{\"title\":\"Host Activity By Day\",\"type\":\"heatmap\",\"params\":{\"type\":\"heatmap\",\"addTooltip\":true,\"addLegend\":true,\"enableHover\":false,\"legendPosition\":\"right\",\"times\":[],\"colorsNumber\":4,\"colorSchema\":\"Reds\",\"setColorRange\":false,\"colorsRange\":[],\"invertColors\":false,\"percentageMode\":false,\"valueAxes\":[{\"show\":false,\"id\":\"ValueAxis-1\",\"type\":\"value\",\"scale\":{\"type\":\"linear\",\"defaultYExtents\":false},\"labels\":{\"show\":false,\"rotate\":0,\"color\":\"#555\"}}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"schema\":\"segment\",\"params\":{\"field\":\"clientTime\",\"interval\":\"d\",\"customInterval\":\"2h\",\"min_doc_count\":1,\"extended_bounds\":{},\"customLabel\":\"Days\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"host\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":true,\"missingBucketLabel\":\"Missing\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Unique Hosts\"}}]}", - "uiStateJSON": "{\"vis\":{\"defaultColors\":{\"0 - 500\":\"rgb(255,245,240)\",\"500 - 1,000\":\"rgb(252,187,161)\",\"1,000 - 1,500\":\"rgb(251,106,74)\",\"1,500 - 2,000\":\"rgb(203,24,29)\"}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - } - }, - { - "_id": "5eeda1e0-06e5-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Number of Unique Pages Visited", - "visState": "{\"title\":\"Number of Unique Pages Visited\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"details.url\",\"customLabel\":\"Number of Unique Pages Visited\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - } - }, - { - "_id": "e1b6c290-06e1-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Top Pages Visited", - "visState": "{\"title\":\"Top Pages Visited\",\"type\":\"pie\",\"params\":{\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"isDonut\":false,\"type\":\"pie\",\"labels\":{\"show\":false,\"values\":true,\"last_level\":true,\"truncate\":100}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Top Event Types\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"details.title\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Event types\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - } - }, - { - "_id": "f7ca4560-be7c-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Time Series", - "visState": "{\"title\":\"Time Series\",\"type\":\"timelion\",\"params\":{\"expression\":\".es(*)\",\"interval\":\"auto\"},\"aggs\":[],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"query\":{\"query\":{\"query_string\":{\"query\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - } - }, - { - "_id": "b7324e60-12ec-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Top URL Visits By Day", - "visState": "{\"title\":\"Top URL Visits By Day\",\"type\":\"heatmap\",\"params\":{\"type\":\"heatmap\",\"addTooltip\":true,\"addLegend\":true,\"enableHover\":false,\"legendPosition\":\"right\",\"times\":[],\"colorsNumber\":4,\"colorSchema\":\"Reds\",\"setColorRange\":false,\"colorsRange\":[],\"invertColors\":false,\"percentageMode\":false,\"valueAxes\":[{\"show\":false,\"id\":\"ValueAxis-1\",\"type\":\"value\",\"scale\":{\"type\":\"linear\",\"defaultYExtents\":false},\"labels\":{\"show\":false,\"rotate\":0,\"color\":\"#555\"}}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"schema\":\"segment\",\"params\":{\"field\":\"clientTime\",\"interval\":\"d\",\"customInterval\":\"2h\",\"min_doc_count\":1,\"extended_bounds\":{},\"customLabel\":\"Days\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"pageUrl\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Unique URLs\"}}]}", - "uiStateJSON": "{\"vis\":{\"defaultColors\":{\"0 - 400\":\"rgb(255,245,240)\",\"400 - 800\":\"rgb(252,187,161)\",\"800 - 1,200\":\"rgb(251,106,74)\",\"1,200 - 1,600\":\"rgb(203,24,29)\"}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - } - }, - { - "_id": "d5a95ce0-06e3-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Top Page Visits By Day", - "visState": "{\"title\":\"Top Page Visits By Day\",\"type\":\"heatmap\",\"params\":{\"type\":\"heatmap\",\"addTooltip\":true,\"addLegend\":true,\"enableHover\":false,\"legendPosition\":\"right\",\"times\":[],\"colorsNumber\":4,\"colorSchema\":\"Reds\",\"setColorRange\":false,\"colorsRange\":[],\"invertColors\":false,\"percentageMode\":false,\"valueAxes\":[{\"show\":false,\"id\":\"ValueAxis-1\",\"type\":\"value\",\"scale\":{\"type\":\"linear\",\"defaultYExtents\":false},\"labels\":{\"show\":false,\"rotate\":0,\"color\":\"#555\"}}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"schema\":\"segment\",\"params\":{\"field\":\"clientTime\",\"interval\":\"d\",\"customInterval\":\"2h\",\"min_doc_count\":1,\"extended_bounds\":{},\"customLabel\":\"Days\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"details.title\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":8,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Unique Pages\"}}]}", - "uiStateJSON": "{\"vis\":{\"defaultColors\":{\"0 - 7\":\"rgb(255,245,240)\",\"7 - 13\":\"rgb(252,187,161)\",\"13 - 20\":\"rgb(251,106,74)\",\"20 - 26\":\"rgb(203,24,29)\"}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - } - }, - { - "_id": "f7c690a0-12ef-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Top UI Elements Used", - "visState": "{\"title\":\"Top UI Elements Used\",\"type\":\"pie\",\"params\":{\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"isDonut\":false,\"type\":\"pie\",\"labels\":{\"show\":false,\"values\":true,\"last_level\":true,\"truncate\":100}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Element Interactions\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":25,\"order\":\"desc\",\"orderBy\":\"_term\",\"customLabel\":\"UI Elements\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - } - }, - { - "_id": "5b467330-06e2-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Number of Unique Hosts", - "visState": "{\"title\":\"Number of Unique Hosts\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"host\",\"customLabel\":\"Number of Unique Hosts\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - } - }, - { - "_id": "ba30fd80-12ee-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Number of User Events", - "visState": "{\"title\":\"Number of User Events\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Number of User Events\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - } - }, - { - "_id": "20b291b0-12f2-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Most Active Users by Host", - "visState": "{\"aggs\":[{\"enabled\":true,\"id\":\"1\",\"params\":{\"customLabel\":\"Number of User Events\"},\"schema\":\"metric\",\"type\":\"count\"},{\"enabled\":true,\"id\":\"2\",\"params\":{\"customLabel\":\"Host\",\"field\":\"host\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"order\":\"desc\",\"orderBy\":\"_term\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"size\":5},\"schema\":\"segment\",\"type\":\"terms\"}],\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":200},\"position\":\"left\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"category\"}],\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"legendPosition\":\"right\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Number of User Events\"},\"drawLinesBetweenPoints\":true,\"mode\":\"normal\",\"show\":true,\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":true,\"rotate\":75,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"bottom\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Number of User Events\"},\"type\":\"value\"}]},\"title\":\"Most Active Users by Host\",\"type\":\"horizontal_bar\"}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"filter\":[],\"query\":{\"language\":\"lucene\",\"query\":\"\"}}" - } - } - }, - { - "_id": "bf327a20-12f3-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Top Target UI Element Cloud", - "visState": "{\"title\":\"Top Target UI Element Cloud\",\"type\":\"tagcloud\",\"params\":{\"scale\":\"linear\",\"orientation\":\"single\",\"minFontSize\":8,\"maxFontSize\":29,\"hideLabel\":false},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Count of User Events\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":8,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"UI Elements\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - } - }, - { - "_id": "887fec40-1886-11e9-bdac-e790c2bff4d4", - "_type": "visualization", - "_source": { - "title": "A/B Test", - "visState": "{\"title\":\"A/B Test\",\"type\":\"histogram\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"show\":true,\"truncate\":100},\"position\":\"bottom\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"HTML Tags\"},\"type\":\"category\"}],\"defaultYExtents\":false,\"drawLinesBetweenPoints\":true,\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"interpolate\":\"linear\",\"legendPosition\":\"right\",\"radiusRatio\":9,\"scale\":\"linear\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Count\"},\"drawLinesBetweenPoints\":true,\"mode\":\"stacked\",\"show\":\"true\",\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"setYExtents\":false,\"showCircles\":true,\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"left\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Count\"},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"HTML Tags\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"toolVersion\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":20,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"JS Events\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"query\":{\"language\":\"lucene\",\"query\":{\"query_string\":{\"analyze_wildcard\":true,\"default_field\":\"*\",\"query\":\"*\"}}},\"filter\":[]}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/5.6.3/Saved Objects/Drill-Down Search.json b/docker/kibana/5.6.3/Saved Objects/Drill-Down Search.json deleted file mode 100644 index 749609b..0000000 --- a/docker/kibana/5.6.3/Saved Objects/Drill-Down Search.json +++ /dev/null
@@ -1,22 +0,0 @@ -[ - { - "_id": "67105880-06e6-11e9-8c58-f38cfff498f6", - "_type": "search", - "_source": { - "title": "Drill-Down Search", - "description": "", - "hits": 0, - "columns": [ - "_source" - ], - "sort": [ - "clientTime", - "desc" - ], - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"highlightAll\":true,\"version\":true,\"query\":{\"language\":\"lucene\",\"query\":\"\"},\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"URL Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"http://senssoft.incubator.apache.org/\"},\"query\":{\"match\":{\"pageUrl\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"meta\":{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"negate\":false,\"disabled\":false,\"alias\":\"AppSearch\",\"type\":\"phrase\",\"key\":\"toolName\",\"value\":\"MyApp\",\"params\":{\"query\":\"MyApp\",\"type\":\"phrase\"}},\"query\":{\"match\":{\"toolName\":{\"query\":\"MyApp\",\"type\":\"phrase\"}}},\"$state\":{\"store\":\"appState\"}}]}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/5.6.3/config/kibana.yml b/docker/kibana/5.6.3/config/kibana.yml deleted file mode 100644 index 11cbee3..0000000 --- a/docker/kibana/5.6.3/config/kibana.yml +++ /dev/null
@@ -1,25 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -server.name: kibana -server.host: "0" -elasticsearch.url: http://localhost:9200 - -# Disable X-Pack -xpack.graph.enabled: false -xpack.ml.enabled: false -xpack.monitoring.enabled: false -xpack.reporting.enabled: false -xpack.security.enabled: false
diff --git a/docker/kibana/6.2.2/Dockerfile b/docker/kibana/6.2.2/Dockerfile deleted file mode 100644 index 630fe98..0000000 --- a/docker/kibana/6.2.2/Dockerfile +++ /dev/null
@@ -1,20 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM docker.elastic.co/kibana/kibana-oss:6.2.2 - -MAINTAINER Michelle Beard <msbeard@apache.org> - -EXPOSE 5601
diff --git a/docker/kibana/6.2.2/Saved Objects/Apache SensSoft Page Usage Dashboard.json b/docker/kibana/6.2.2/Saved Objects/Apache SensSoft Page Usage Dashboard.json deleted file mode 100644 index c9e569e..0000000 --- a/docker/kibana/6.2.2/Saved Objects/Apache SensSoft Page Usage Dashboard.json +++ /dev/null
@@ -1,18 +0,0 @@ -[ - { - "_id": "3f02bf70-12eb-11e9-a1e0-631cf5fb9335", - "_type": "dashboard", - "_source": { - "title": "Apache SensSoft Page Usage Dashboard", - "hits": 0, - "description": "Abstracts Multi-User Interaction with Single Pages/Apps. Ideal for script-tag, page-level UserALE.js deployments.", - "panelsJSON": "[{\"gridData\":{\"h\":15,\"i\":\"2\",\"w\":32,\"x\":16,\"y\":0},\"id\":\"f7ca4560-be7c-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"2\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"vis\":{\"defaultColors\":{\"0 - 400\":\"rgb(255,245,240)\",\"1,200 - 1,600\":\"rgb(203,24,29)\",\"400 - 800\":\"rgb(252,187,161)\",\"800 - 1,200\":\"rgb(251,106,74)\"},\"legendOpen\":false}},\"gridData\":{\"h\":15,\"i\":\"5\",\"w\":20,\"x\":12,\"y\":15},\"id\":\"429c0940-fce6-11e8-a156-87bcaf41506e\",\"panelIndex\":\"5\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"6\",\"w\":12,\"x\":0,\"y\":15},\"id\":\"5b467330-06e2-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"6\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":45,\"i\":\"7\",\"w\":48,\"x\":0,\"y\":45},\"id\":\"2bf40010-be7d-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"7\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"8\",\"w\":16,\"x\":0,\"y\":0},\"id\":\"ba30fd80-12ee-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"8\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"9\",\"w\":24,\"x\":0,\"y\":30},\"id\":\"bcd7c950-be7c-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"9\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"vis\":{\"legendOpen\":false}},\"gridData\":{\"h\":15,\"i\":\"10\",\"w\":16,\"x\":32,\"y\":15},\"id\":\"20b291b0-12f2-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"10\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"spy\":null},\"gridData\":{\"h\":15,\"i\":\"11\",\"w\":24,\"x\":24,\"y\":30},\"id\":\"bf327a20-12f3-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"11\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":40,\"i\":\"12\",\"w\":48,\"x\":0,\"y\":90},\"id\":\"887fec40-1886-11e9-bdac-e790c2bff4d4\",\"panelIndex\":\"12\",\"type\":\"visualization\",\"version\":\"6.5.4\"}]", - "optionsJSON": "{\"darkTheme\":true,\"useMargins\":false}", - "version": 1, - "timeRestore": false, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"URL Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"http://senssoft.incubator.apache.org/\"},\"query\":{\"match\":{\"pageUrl\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":null,\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"toolName\",\"negate\":false,\"params\":{\"query\":\"MyApp\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"MyApp\"},\"query\":{\"match\":{\"toolName\":{\"query\":\"MyApp\",\"type\":\"phrase\"}}}}],\"highlightAll\":true,\"version\":true,\"query\":{\"query\":\"*\",\"language\":\"lucene\"}}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/6.2.2/Saved Objects/Apache SensSoft User Access Dashboard.json b/docker/kibana/6.2.2/Saved Objects/Apache SensSoft User Access Dashboard.json deleted file mode 100644 index c2a08ff..0000000 --- a/docker/kibana/6.2.2/Saved Objects/Apache SensSoft User Access Dashboard.json +++ /dev/null
@@ -1,18 +0,0 @@ -[ - { - "_id": "ab9f1f90-fce6-11e8-a156-87bcaf41506e", - "_type": "dashboard", - "_source": { - "title": "Apache SensSoft User Access Dashboard", - "hits": 0, - "description": "Abstracts Multi-User Utilization of IT Assets (and Web Usage). Ideal for UserALE.js Web Extension deployments.", - "panelsJSON": "[{\"panelIndex\":\"2\",\"gridData\":{\"x\":16,\"y\":0,\"w\":32,\"h\":15,\"i\":\"2\"},\"id\":\"f7ca4560-be7c-11e7-8adf-fd0a12531eca\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"panelIndex\":\"4\",\"gridData\":{\"x\":0,\"y\":0,\"w\":12,\"h\":15,\"i\":\"4\"},\"embeddableConfig\":{\"spy\":null},\"id\":\"e36b1f40-be7c-11e7-8adf-fd0a12531eca\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"panelIndex\":\"5\",\"gridData\":{\"x\":12,\"y\":15,\"w\":36,\"h\":15,\"i\":\"5\"},\"id\":\"429c0940-fce6-11e8-a156-87bcaf41506e\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"panelIndex\":\"6\",\"gridData\":{\"x\":0,\"y\":15,\"w\":12,\"h\":15,\"i\":\"6\"},\"id\":\"5b467330-06e2-11e9-8c58-f38cfff498f6\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"panelIndex\":\"7\",\"gridData\":{\"x\":12,\"y\":45,\"w\":36,\"h\":15,\"i\":\"7\"},\"id\":\"e1b6c290-06e1-11e9-8c58-f38cfff498f6\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"panelIndex\":\"8\",\"gridData\":{\"x\":0,\"y\":30,\"w\":48,\"h\":15,\"i\":\"8\"},\"embeddableConfig\":{\"vis\":{\"colors\":{\"0 - 6\":\"#FCE2DE\"},\"defaultColors\":{\"0 - 6\":\"rgb(255,245,240)\",\"11 - 17\":\"rgb(251,106,74)\",\"17 - 22\":\"rgb(203,24,29)\",\"6 - 11\":\"rgb(252,187,161)\"},\"legendOpen\":true}},\"id\":\"d5a95ce0-06e3-11e9-8c58-f38cfff498f6\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"panelIndex\":\"9\",\"gridData\":{\"x\":0,\"y\":45,\"w\":12,\"h\":15,\"i\":\"9\"},\"id\":\"5eeda1e0-06e5-11e9-8c58-f38cfff498f6\",\"type\":\"visualization\",\"version\":\"6.5.4\"}]", - "optionsJSON": "{\"darkTheme\":true,\"useMargins\":false}", - "version": 1, - "timeRestore": false, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"URL Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":[\"http://senssoft.incubator.apache.org/\"],\"type\":\"phrases\",\"value\":\"http://senssoft.incubator.apache.org/\"},\"query\":{\"bool\":{\"minimum_should_match\":1,\"should\":[{\"match_phrase\":{\"pageUrl\":\"http://senssoft.incubator.apache.org/\"}}]}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":null,\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":[\"https://github.com/apache/incubator-senssoft\"],\"type\":\"phrases\",\"value\":\"https://github.com/apache/incubator-senssoft\"},\"query\":{\"bool\":{\"minimum_should_match\":1,\"should\":[{\"match_phrase\":{\"pageUrl\":\"https://github.com/apache/incubator-senssoft\"}}]}}}],\"highlightAll\":true,\"version\":true,\"query\":{\"language\":\"lucene\",\"query\":{\"query_string\":{\"analyze_wildcard\":true,\"default_field\":\"*\",\"query\":\"*\"}}}}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/6.2.2/Saved Objects/Apache SensSoft Visualizations.json b/docker/kibana/6.2.2/Saved Objects/Apache SensSoft Visualizations.json deleted file mode 100644 index 34ba9f0..0000000 --- a/docker/kibana/6.2.2/Saved Objects/Apache SensSoft Visualizations.json +++ /dev/null
@@ -1,226 +0,0 @@ -[ - { - "_id": "bcd7c950-be7c-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Top Event Types", - "visState": "{\"title\":\"Top Event Types\",\"type\":\"pie\",\"params\":{\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"isDonut\":false},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Top Event Types\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"type\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Event types\"}}],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true}},\"language\":\"lucene\"},\"filter\":[]}" - } - } - }, - { - "_id": "e36b1f40-be7c-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Total Number of Logs", - "visState": "{\"title\":\"Total Number of Logs\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total number of logs\"}}],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true}},\"language\":\"lucene\"},\"filter\":[]}" - } - } - }, - { - "_id": "2bf40010-be7d-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Events by Targets", - "visState": "{\"title\":\"Events by Targets\",\"type\":\"histogram\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"show\":true,\"truncate\":100},\"position\":\"bottom\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"HTML Tags\"},\"type\":\"category\"}],\"defaultYExtents\":false,\"drawLinesBetweenPoints\":true,\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"interpolate\":\"linear\",\"legendPosition\":\"right\",\"radiusRatio\":9,\"scale\":\"linear\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Count\"},\"drawLinesBetweenPoints\":true,\"mode\":\"stacked\",\"show\":\"true\",\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"setYExtents\":false,\"showCircles\":true,\"times\":[],\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"left\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"HTML Tags\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"type\",\"size\":20,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"JS Events\"}}],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true}},\"language\":\"lucene\"},\"filter\":[]}" - } - } - }, - { - "_id": "64045a30-fce4-11e8-a156-87bcaf41506e", - "_type": "visualization", - "_source": { - "title": "Total Logs by Unique Hosts", - "visState": "{\"title\":\"Total Logs by Unique Hosts\",\"type\":\"horizontal_bar\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":200},\"position\":\"left\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"category\"}],\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"legendPosition\":\"right\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Total Logs\"},\"drawLinesBetweenPoints\":true,\"mode\":\"normal\",\"show\":true,\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":true,\"rotate\":75,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"bottom\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Total Logs\"},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"host\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Unique Hosts\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"filter\":[],\"query\":{\"language\":\"lucene\",\"query\":\"\"}}" - } - } - }, - { - "_id": "429c0940-fce6-11e8-a156-87bcaf41506e", - "_type": "visualization", - "_source": { - "title": "Host Activity By Day", - "visState": "{\"title\":\"Host Activity By Day\",\"type\":\"heatmap\",\"params\":{\"type\":\"heatmap\",\"addTooltip\":true,\"addLegend\":true,\"enableHover\":false,\"legendPosition\":\"right\",\"times\":[],\"colorsNumber\":4,\"colorSchema\":\"Reds\",\"setColorRange\":false,\"colorsRange\":[],\"invertColors\":false,\"percentageMode\":false,\"valueAxes\":[{\"show\":false,\"id\":\"ValueAxis-1\",\"type\":\"value\",\"scale\":{\"type\":\"linear\",\"defaultYExtents\":false},\"labels\":{\"show\":false,\"rotate\":0,\"color\":\"#555\"}}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"schema\":\"segment\",\"params\":{\"field\":\"clientTime\",\"interval\":\"d\",\"customInterval\":\"2h\",\"min_doc_count\":1,\"extended_bounds\":{},\"customLabel\":\"Days\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"host\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":true,\"missingBucketLabel\":\"Missing\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Unique Hosts\"}}]}", - "uiStateJSON": "{\"vis\":{\"defaultColors\":{\"0 - 500\":\"rgb(255,245,240)\",\"500 - 1,000\":\"rgb(252,187,161)\",\"1,000 - 1,500\":\"rgb(251,106,74)\",\"1,500 - 2,000\":\"rgb(203,24,29)\"}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - } - }, - { - "_id": "5eeda1e0-06e5-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Number of Unique Pages Visited", - "visState": "{\"title\":\"Number of Unique Pages Visited\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"details.url\",\"customLabel\":\"Number of Unique Pages Visited\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - } - }, - { - "_id": "e1b6c290-06e1-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Top Pages Visited", - "visState": "{\"title\":\"Top Pages Visited\",\"type\":\"pie\",\"params\":{\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"isDonut\":false,\"type\":\"pie\",\"labels\":{\"show\":false,\"values\":true,\"last_level\":true,\"truncate\":100}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Top Event Types\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"details.title\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Event types\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - } - }, - { - "_id": "f7ca4560-be7c-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Time Series", - "visState": "{\"title\":\"Time Series\",\"type\":\"timelion\",\"params\":{\"expression\":\".es(*)\",\"interval\":\"auto\"},\"aggs\":[],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"query\":{\"query\":{\"query_string\":{\"query\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - } - }, - { - "_id": "b7324e60-12ec-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Top URL Visits By Day", - "visState": "{\"title\":\"Top URL Visits By Day\",\"type\":\"heatmap\",\"params\":{\"type\":\"heatmap\",\"addTooltip\":true,\"addLegend\":true,\"enableHover\":false,\"legendPosition\":\"right\",\"times\":[],\"colorsNumber\":4,\"colorSchema\":\"Reds\",\"setColorRange\":false,\"colorsRange\":[],\"invertColors\":false,\"percentageMode\":false,\"valueAxes\":[{\"show\":false,\"id\":\"ValueAxis-1\",\"type\":\"value\",\"scale\":{\"type\":\"linear\",\"defaultYExtents\":false},\"labels\":{\"show\":false,\"rotate\":0,\"color\":\"#555\"}}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"schema\":\"segment\",\"params\":{\"field\":\"clientTime\",\"interval\":\"d\",\"customInterval\":\"2h\",\"min_doc_count\":1,\"extended_bounds\":{},\"customLabel\":\"Days\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"pageUrl\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Unique URLs\"}}]}", - "uiStateJSON": "{\"vis\":{\"defaultColors\":{\"0 - 400\":\"rgb(255,245,240)\",\"400 - 800\":\"rgb(252,187,161)\",\"800 - 1,200\":\"rgb(251,106,74)\",\"1,200 - 1,600\":\"rgb(203,24,29)\"}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - } - }, - { - "_id": "d5a95ce0-06e3-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Top Page Visits By Day", - "visState": "{\"title\":\"Top Page Visits By Day\",\"type\":\"heatmap\",\"params\":{\"type\":\"heatmap\",\"addTooltip\":true,\"addLegend\":true,\"enableHover\":false,\"legendPosition\":\"right\",\"times\":[],\"colorsNumber\":4,\"colorSchema\":\"Reds\",\"setColorRange\":false,\"colorsRange\":[],\"invertColors\":false,\"percentageMode\":false,\"valueAxes\":[{\"show\":false,\"id\":\"ValueAxis-1\",\"type\":\"value\",\"scale\":{\"type\":\"linear\",\"defaultYExtents\":false},\"labels\":{\"show\":false,\"rotate\":0,\"color\":\"#555\"}}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"schema\":\"segment\",\"params\":{\"field\":\"clientTime\",\"interval\":\"d\",\"customInterval\":\"2h\",\"min_doc_count\":1,\"extended_bounds\":{},\"customLabel\":\"Days\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"details.title\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":8,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Unique Pages\"}}]}", - "uiStateJSON": "{\"vis\":{\"defaultColors\":{\"0 - 7\":\"rgb(255,245,240)\",\"7 - 13\":\"rgb(252,187,161)\",\"13 - 20\":\"rgb(251,106,74)\",\"20 - 26\":\"rgb(203,24,29)\"}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - } - }, - { - "_id": "f7c690a0-12ef-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Top UI Elements Used", - "visState": "{\"title\":\"Top UI Elements Used\",\"type\":\"pie\",\"params\":{\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"isDonut\":false,\"type\":\"pie\",\"labels\":{\"show\":false,\"values\":true,\"last_level\":true,\"truncate\":100}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Element Interactions\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":25,\"order\":\"desc\",\"orderBy\":\"_term\",\"customLabel\":\"UI Elements\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - } - }, - { - "_id": "5b467330-06e2-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Number of Unique Hosts", - "visState": "{\"title\":\"Number of Unique Hosts\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"host\",\"customLabel\":\"Number of Unique Hosts\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - } - }, - { - "_id": "ba30fd80-12ee-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Number of User Events", - "visState": "{\"title\":\"Number of User Events\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Number of User Events\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - } - }, - { - "_id": "20b291b0-12f2-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Most Active Users by Host", - "visState": "{\"aggs\":[{\"enabled\":true,\"id\":\"1\",\"params\":{\"customLabel\":\"Number of User Events\"},\"schema\":\"metric\",\"type\":\"count\"},{\"enabled\":true,\"id\":\"2\",\"params\":{\"customLabel\":\"Host\",\"field\":\"host\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"order\":\"desc\",\"orderBy\":\"_term\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"size\":5},\"schema\":\"segment\",\"type\":\"terms\"}],\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":200},\"position\":\"left\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"category\"}],\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"legendPosition\":\"right\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Number of User Events\"},\"drawLinesBetweenPoints\":true,\"mode\":\"normal\",\"show\":true,\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":true,\"rotate\":75,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"bottom\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Number of User Events\"},\"type\":\"value\"}]},\"title\":\"Most Active Users by Host\",\"type\":\"horizontal_bar\"}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"filter\":[],\"query\":{\"language\":\"lucene\",\"query\":\"\"}}" - } - } - }, - { - "_id": "bf327a20-12f3-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Top Target UI Element Cloud", - "visState": "{\"title\":\"Top Target UI Element Cloud\",\"type\":\"tagcloud\",\"params\":{\"scale\":\"linear\",\"orientation\":\"single\",\"minFontSize\":8,\"maxFontSize\":29,\"hideLabel\":false},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Count of User Events\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":8,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"UI Elements\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - } - }, - { - "_id": "887fec40-1886-11e9-bdac-e790c2bff4d4", - "_type": "visualization", - "_source": { - "title": "A/B Test", - "visState": "{\"title\":\"A/B Test\",\"type\":\"histogram\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"show\":true,\"truncate\":100},\"position\":\"bottom\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"HTML Tags\"},\"type\":\"category\"}],\"defaultYExtents\":false,\"drawLinesBetweenPoints\":true,\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"interpolate\":\"linear\",\"legendPosition\":\"right\",\"radiusRatio\":9,\"scale\":\"linear\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Count\"},\"drawLinesBetweenPoints\":true,\"mode\":\"stacked\",\"show\":\"true\",\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"setYExtents\":false,\"showCircles\":true,\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"left\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Count\"},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"HTML Tags\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"toolVersion\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":20,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"JS Events\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"query\":{\"language\":\"lucene\",\"query\":{\"query_string\":{\"analyze_wildcard\":true,\"default_field\":\"*\",\"query\":\"*\"}}},\"filter\":[]}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/6.2.2/Saved Objects/Drill-Down Search.json b/docker/kibana/6.2.2/Saved Objects/Drill-Down Search.json deleted file mode 100644 index 749609b..0000000 --- a/docker/kibana/6.2.2/Saved Objects/Drill-Down Search.json +++ /dev/null
@@ -1,22 +0,0 @@ -[ - { - "_id": "67105880-06e6-11e9-8c58-f38cfff498f6", - "_type": "search", - "_source": { - "title": "Drill-Down Search", - "description": "", - "hits": 0, - "columns": [ - "_source" - ], - "sort": [ - "clientTime", - "desc" - ], - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"highlightAll\":true,\"version\":true,\"query\":{\"language\":\"lucene\",\"query\":\"\"},\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"URL Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"http://senssoft.incubator.apache.org/\"},\"query\":{\"match\":{\"pageUrl\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"meta\":{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"negate\":false,\"disabled\":false,\"alias\":\"AppSearch\",\"type\":\"phrase\",\"key\":\"toolName\",\"value\":\"MyApp\",\"params\":{\"query\":\"MyApp\",\"type\":\"phrase\"}},\"query\":{\"match\":{\"toolName\":{\"query\":\"MyApp\",\"type\":\"phrase\"}}},\"$state\":{\"store\":\"appState\"}}]}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/6.2.2/config/kibana.yml b/docker/kibana/6.2.2/config/kibana.yml deleted file mode 100644 index cc93fed..0000000 --- a/docker/kibana/6.2.2/config/kibana.yml +++ /dev/null
@@ -1,18 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -server.name: kibana -server.host: "0" -elasticsearch.url: http://localhost:9200
diff --git a/docker/kibana/6.5.4/Dockerfile b/docker/kibana/6.5.4/Dockerfile deleted file mode 100644 index c9e78e2..0000000 --- a/docker/kibana/6.5.4/Dockerfile +++ /dev/null
@@ -1,20 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM docker.elastic.co/kibana/kibana-oss:6.5.4 - -MAINTAINER Michelle Beard <msbeard@apache.org> - -EXPOSE 5601
diff --git a/docker/kibana/6.5.4/Saved Objects/Apache SensSoft Business Analytics Dashboard.json b/docker/kibana/6.5.4/Saved Objects/Apache SensSoft Business Analytics Dashboard.json deleted file mode 100644 index eb2f22d..0000000 --- a/docker/kibana/6.5.4/Saved Objects/Apache SensSoft Business Analytics Dashboard.json +++ /dev/null
@@ -1,18 +0,0 @@ -[ - { - "_id": "90b264d0-2cd4-11e9-9b9a-95b7b006b436", - "_type": "dashboard", - "_source": { - "title": "Apache SensSoft Business Analytics Dashboard", - "hits": 0, - "description": "Abstracts Multi-User Interaction with Single Pages/Apps", - "panelsJSON": "[{\"embeddableConfig\":{\"vis\":{\"defaultColors\":{\"0 - 400\":\"rgb(255,245,240)\",\"1,200 - 1,600\":\"rgb(203,24,29)\",\"400 - 800\":\"rgb(252,187,161)\",\"800 - 1,200\":\"rgb(251,106,74)\"},\"legendOpen\":false}},\"gridData\":{\"h\":21,\"i\":\"5\",\"w\":48,\"x\":0,\"y\":84},\"id\":\"429c0940-fce6-11e8-a156-87bcaf41506e\",\"panelIndex\":\"5\",\"title\":\"Unique User Activity by Day\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"6\",\"w\":12,\"x\":0,\"y\":14},\"id\":\"5b467330-06e2-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"6\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"vis\":{\"legendOpen\":false}},\"gridData\":{\"h\":15,\"i\":\"10\",\"w\":23,\"x\":25,\"y\":14},\"id\":\"20b291b0-12f2-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"10\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"h\":15,\"i\":\"13\",\"w\":13,\"x\":12,\"y\":14},\"id\":\"d1ba2560-2d03-11e9-9b9a-95b7b006b436\",\"panelIndex\":\"13\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"h\":29,\"i\":\"14\",\"w\":23,\"x\":25,\"y\":29},\"id\":\"e1b6c290-06e1-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"14\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"h\":29,\"i\":\"15\",\"w\":25,\"x\":0,\"y\":29},\"id\":\"822808b0-2d0c-11e9-9b9a-95b7b006b436\",\"panelIndex\":\"15\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"h\":26,\"i\":\"16\",\"w\":48,\"x\":0,\"y\":105},\"id\":\"d5a95ce0-06e3-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"16\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"h\":14,\"i\":\"17\",\"w\":48,\"x\":0,\"y\":0},\"id\":\"36a0eb90-2cd6-11e9-9b9a-95b7b006b436\",\"panelIndex\":\"17\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"h\":26,\"i\":\"18\",\"w\":48,\"x\":0,\"y\":58},\"id\":\"33e09c60-2ff2-11e9-be20-a737e788a0aa\",\"panelIndex\":\"18\",\"type\":\"visualization\",\"version\":\"6.5.4\"}]", - "optionsJSON": "{\"darkTheme\":true,\"useMargins\":false}", - "version": 1, - "timeRestore": false, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":null,\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"toolName\",\"negate\":false,\"params\":{\"query\":\"MyApp\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"MyApp\"},\"query\":{\"match\":{\"toolName\":{\"query\":\"MyApp\",\"type\":\"phrase\"}}}}],\"highlightAll\":true,\"version\":true,\"query\":{\"language\":\"lucene\",\"query\":\"\"}}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/6.5.4/Saved Objects/Apache SensSoft Page Usage Dashboard.json b/docker/kibana/6.5.4/Saved Objects/Apache SensSoft Page Usage Dashboard.json deleted file mode 100644 index c9e569e..0000000 --- a/docker/kibana/6.5.4/Saved Objects/Apache SensSoft Page Usage Dashboard.json +++ /dev/null
@@ -1,18 +0,0 @@ -[ - { - "_id": "3f02bf70-12eb-11e9-a1e0-631cf5fb9335", - "_type": "dashboard", - "_source": { - "title": "Apache SensSoft Page Usage Dashboard", - "hits": 0, - "description": "Abstracts Multi-User Interaction with Single Pages/Apps. Ideal for script-tag, page-level UserALE.js deployments.", - "panelsJSON": "[{\"gridData\":{\"h\":15,\"i\":\"2\",\"w\":32,\"x\":16,\"y\":0},\"id\":\"f7ca4560-be7c-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"2\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"vis\":{\"defaultColors\":{\"0 - 400\":\"rgb(255,245,240)\",\"1,200 - 1,600\":\"rgb(203,24,29)\",\"400 - 800\":\"rgb(252,187,161)\",\"800 - 1,200\":\"rgb(251,106,74)\"},\"legendOpen\":false}},\"gridData\":{\"h\":15,\"i\":\"5\",\"w\":20,\"x\":12,\"y\":15},\"id\":\"429c0940-fce6-11e8-a156-87bcaf41506e\",\"panelIndex\":\"5\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"6\",\"w\":12,\"x\":0,\"y\":15},\"id\":\"5b467330-06e2-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"6\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":45,\"i\":\"7\",\"w\":48,\"x\":0,\"y\":45},\"id\":\"2bf40010-be7d-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"7\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"8\",\"w\":16,\"x\":0,\"y\":0},\"id\":\"ba30fd80-12ee-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"8\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"9\",\"w\":24,\"x\":0,\"y\":30},\"id\":\"bcd7c950-be7c-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"9\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"vis\":{\"legendOpen\":false}},\"gridData\":{\"h\":15,\"i\":\"10\",\"w\":16,\"x\":32,\"y\":15},\"id\":\"20b291b0-12f2-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"10\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"spy\":null},\"gridData\":{\"h\":15,\"i\":\"11\",\"w\":24,\"x\":24,\"y\":30},\"id\":\"bf327a20-12f3-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"11\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":40,\"i\":\"12\",\"w\":48,\"x\":0,\"y\":90},\"id\":\"887fec40-1886-11e9-bdac-e790c2bff4d4\",\"panelIndex\":\"12\",\"type\":\"visualization\",\"version\":\"6.5.4\"}]", - "optionsJSON": "{\"darkTheme\":true,\"useMargins\":false}", - "version": 1, - "timeRestore": false, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"URL Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"http://senssoft.incubator.apache.org/\"},\"query\":{\"match\":{\"pageUrl\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":null,\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"toolName\",\"negate\":false,\"params\":{\"query\":\"MyApp\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"MyApp\"},\"query\":{\"match\":{\"toolName\":{\"query\":\"MyApp\",\"type\":\"phrase\"}}}}],\"highlightAll\":true,\"version\":true,\"query\":{\"query\":\"*\",\"language\":\"lucene\"}}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/6.5.4/Saved Objects/Apache SensSoft User Access Dashboard.json b/docker/kibana/6.5.4/Saved Objects/Apache SensSoft User Access Dashboard.json deleted file mode 100644 index cf34ced..0000000 --- a/docker/kibana/6.5.4/Saved Objects/Apache SensSoft User Access Dashboard.json +++ /dev/null
@@ -1,18 +0,0 @@ -[ - { - "_id": "ab9f1f90-fce6-11e8-a156-87bcaf41506e", - "_type": "dashboard", - "_source": { - "title": "Apache SensSoft User Access Dashboard", - "hits": 0, - "description": "Abstracts Multi-User Utilization of IT Assets (and Web Usage). Ideal for UserALE.js Web Extension deployments.", - "panelsJSON": "[{\"gridData\":{\"h\":15,\"i\":\"2\",\"w\":32,\"x\":16,\"y\":0},\"id\":\"f7ca4560-be7c-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"2\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"spy\":null},\"gridData\":{\"h\":15,\"i\":\"4\",\"w\":16,\"x\":0,\"y\":0},\"id\":\"e36b1f40-be7c-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"4\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"5\",\"w\":36,\"x\":12,\"y\":15},\"id\":\"429c0940-fce6-11e8-a156-87bcaf41506e\",\"panelIndex\":\"5\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"6\",\"w\":12,\"x\":0,\"y\":15},\"id\":\"5b467330-06e2-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"6\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"7\",\"w\":36,\"x\":12,\"y\":45},\"id\":\"e1b6c290-06e1-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"7\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"vis\":{\"colors\":{\"0 - 6\":\"#FCE2DE\"},\"defaultColors\":{\"0 - 6\":\"rgb(255,245,240)\",\"11 - 17\":\"rgb(251,106,74)\",\"17 - 22\":\"rgb(203,24,29)\",\"6 - 11\":\"rgb(252,187,161)\"},\"legendOpen\":true}},\"gridData\":{\"h\":15,\"i\":\"8\",\"w\":48,\"x\":0,\"y\":30},\"id\":\"d5a95ce0-06e3-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"8\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"9\",\"w\":12,\"x\":0,\"y\":45},\"id\":\"5eeda1e0-06e5-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"9\",\"type\":\"visualization\",\"version\":\"6.5.4\"}]", - "optionsJSON": "{\"darkTheme\":true,\"useMargins\":false}", - "version": 1, - "timeRestore": false, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"URL Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":[\"http://senssoft.incubator.apache.org/\"],\"type\":\"phrases\",\"value\":\"http://senssoft.incubator.apache.org/\"},\"query\":{\"bool\":{\"minimum_should_match\":1,\"should\":[{\"match_phrase\":{\"pageUrl\":\"http://senssoft.incubator.apache.org/\"}}]}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":null,\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":[\"https://github.com/apache/incubator-senssoft\"],\"type\":\"phrases\",\"value\":\"https://github.com/apache/incubator-senssoft\"},\"query\":{\"bool\":{\"minimum_should_match\":1,\"should\":[{\"match_phrase\":{\"pageUrl\":\"https://github.com/apache/incubator-senssoft\"}}]}}}],\"highlightAll\":true,\"version\":true,\"query\":{\"language\":\"lucene\",\"query\":{\"query_string\":{\"analyze_wildcard\":true,\"default_field\":\"*\",\"query\":\"*\"}}}}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/6.5.4/Saved Objects/Apache SensSoft Visualizations.json b/docker/kibana/6.5.4/Saved Objects/Apache SensSoft Visualizations.json deleted file mode 100644 index 95fc985..0000000 --- a/docker/kibana/6.5.4/Saved Objects/Apache SensSoft Visualizations.json +++ /dev/null
@@ -1,359 +0,0 @@ -[ - { - "_id": "28070240-2d12-11e9-9b9a-95b7b006b436", - "_type": "visualization", - "_source": { - "title": "Activity by SessionID", - "visState": "{\"type\":\"timelion\",\"title\":\"Activity by SessionID\",\"params\":{\"expression\":\".es(*,split=sessionID:10)\",\"interval\":\"auto\"}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "36a0eb90-2cd6-11e9-9b9a-95b7b006b436", - "_type": "visualization", - "_source": { - "title": "Time-Series Unique Hosts", - "visState": "{\"title\":\"Time-Series Unique Hosts\",\"type\":\"timelion\",\"params\":{\"expression\":\".es(metric=cardinality:host).label('Unique Users (Hosts)')\",\"interval\":\"auto\"},\"aggs\":[]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"query\":{\"language\":\"lucene\",\"query\":\"\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "f7ca4560-be7c-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Time Series", - "visState": "{\"title\":\"Time Series\",\"type\":\"timelion\",\"params\":{\"expression\":\".es(*)\",\"interval\":\"auto\"},\"aggs\":[],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"query\":{\"query\":{\"query_string\":{\"query\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "f7c690a0-12ef-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Top UI Elements Used", - "visState": "{\"title\":\"Top UI Elements Used\",\"type\":\"pie\",\"params\":{\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"isDonut\":false,\"type\":\"pie\",\"labels\":{\"show\":false,\"values\":true,\"last_level\":true,\"truncate\":100}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Element Interactions\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":25,\"order\":\"desc\",\"orderBy\":\"_term\",\"customLabel\":\"UI Elements\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7fed1930-2cd2-11e9-9b9a-95b7b006b436\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "ba30fd80-12ee-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Number of User Events", - "visState": "{\"title\":\"Number of User Events\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Number of User Events\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7fed1930-2cd2-11e9-9b9a-95b7b006b436\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "20b291b0-12f2-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Most Active Users by Host", - "visState": "{\"aggs\":[{\"enabled\":true,\"id\":\"1\",\"params\":{\"customLabel\":\"Number of User Events\"},\"schema\":\"metric\",\"type\":\"count\"},{\"enabled\":true,\"id\":\"2\",\"params\":{\"customLabel\":\"Host\",\"field\":\"host\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"order\":\"desc\",\"orderBy\":\"_term\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"size\":5},\"schema\":\"segment\",\"type\":\"terms\"}],\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":200},\"position\":\"left\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"category\"}],\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"legendPosition\":\"right\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Number of User Events\"},\"drawLinesBetweenPoints\":true,\"mode\":\"normal\",\"show\":true,\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":true,\"rotate\":75,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"bottom\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Number of User Events\"},\"type\":\"value\"}]},\"title\":\"Most Active Users by Host\",\"type\":\"horizontal_bar\"}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7fed1930-2cd2-11e9-9b9a-95b7b006b436\",\"filter\":[],\"query\":{\"language\":\"lucene\",\"query\":\"\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "bf327a20-12f3-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Top Target UI Element Cloud", - "visState": "{\"title\":\"Top Target UI Element Cloud\",\"type\":\"tagcloud\",\"params\":{\"scale\":\"linear\",\"orientation\":\"single\",\"minFontSize\":8,\"maxFontSize\":29,\"hideLabel\":false},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Count of User Events\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":8,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"UI Elements\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7fed1930-2cd2-11e9-9b9a-95b7b006b436\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "887fec40-1886-11e9-bdac-e790c2bff4d4", - "_type": "visualization", - "_source": { - "title": "A/B Test", - "visState": "{\"title\":\"A/B Test\",\"type\":\"histogram\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"show\":true,\"truncate\":100},\"position\":\"bottom\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"HTML Tags\"},\"type\":\"category\"}],\"defaultYExtents\":false,\"drawLinesBetweenPoints\":true,\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"interpolate\":\"linear\",\"legendPosition\":\"right\",\"radiusRatio\":9,\"scale\":\"linear\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Count\"},\"drawLinesBetweenPoints\":true,\"mode\":\"stacked\",\"show\":\"true\",\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"setYExtents\":false,\"showCircles\":true,\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"left\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Count\"},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"HTML Tags\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"toolVersion\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":20,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"JS Events\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7fed1930-2cd2-11e9-9b9a-95b7b006b436\",\"query\":{\"language\":\"lucene\",\"query\":{\"query_string\":{\"analyze_wildcard\":true,\"default_field\":\"*\",\"query\":\"*\"}}},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "bcd7c950-be7c-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Top Event Types", - "visState": "{\"title\":\"Top Event Types\",\"type\":\"pie\",\"params\":{\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"isDonut\":false},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Top Event Types\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"type\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Event types\"}}],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7fed1930-2cd2-11e9-9b9a-95b7b006b436\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "e36b1f40-be7c-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Total Number of Logs", - "visState": "{\"title\":\"Total Number of Logs\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total number of logs\"}}],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7fed1930-2cd2-11e9-9b9a-95b7b006b436\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "2bf40010-be7d-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Events by Targets", - "visState": "{\"title\":\"Events by Targets\",\"type\":\"histogram\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"show\":true,\"truncate\":100},\"position\":\"bottom\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"HTML Tags\"},\"type\":\"category\"}],\"defaultYExtents\":false,\"drawLinesBetweenPoints\":true,\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"interpolate\":\"linear\",\"legendPosition\":\"right\",\"radiusRatio\":9,\"scale\":\"linear\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Count\"},\"drawLinesBetweenPoints\":true,\"mode\":\"stacked\",\"show\":\"true\",\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"setYExtents\":false,\"showCircles\":true,\"times\":[],\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"left\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"HTML Tags\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"type\",\"size\":20,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"JS Events\"}}],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7fed1930-2cd2-11e9-9b9a-95b7b006b436\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "64045a30-fce4-11e8-a156-87bcaf41506e", - "_type": "visualization", - "_source": { - "title": "Total Logs by Unique Hosts", - "visState": "{\"title\":\"Total Logs by Unique Hosts\",\"type\":\"horizontal_bar\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":200},\"position\":\"left\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"category\"}],\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"legendPosition\":\"right\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Total Logs\"},\"drawLinesBetweenPoints\":true,\"mode\":\"normal\",\"show\":true,\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":true,\"rotate\":75,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"bottom\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Total Logs\"},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"host\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Unique Hosts\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7fed1930-2cd2-11e9-9b9a-95b7b006b436\",\"filter\":[],\"query\":{\"language\":\"lucene\",\"query\":\"\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "429c0940-fce6-11e8-a156-87bcaf41506e", - "_type": "visualization", - "_source": { - "title": "Host Activity By Day", - "visState": "{\"title\":\"Host Activity By Day\",\"type\":\"heatmap\",\"params\":{\"type\":\"heatmap\",\"addTooltip\":true,\"addLegend\":true,\"enableHover\":false,\"legendPosition\":\"right\",\"times\":[],\"colorsNumber\":4,\"colorSchema\":\"Reds\",\"setColorRange\":false,\"colorsRange\":[],\"invertColors\":false,\"percentageMode\":false,\"valueAxes\":[{\"show\":false,\"id\":\"ValueAxis-1\",\"type\":\"value\",\"scale\":{\"type\":\"linear\",\"defaultYExtents\":false},\"labels\":{\"show\":false,\"rotate\":0,\"color\":\"#555\"}}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"schema\":\"segment\",\"params\":{\"field\":\"clientTime\",\"interval\":\"d\",\"customInterval\":\"2h\",\"min_doc_count\":1,\"extended_bounds\":{},\"customLabel\":\"Days\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"host\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":true,\"missingBucketLabel\":\"Missing\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Unique Hosts\"}}]}", - "uiStateJSON": "{\"vis\":{\"defaultColors\":{\"0 - 500\":\"rgb(255,245,240)\",\"500 - 1,000\":\"rgb(252,187,161)\",\"1,000 - 1,500\":\"rgb(251,106,74)\",\"1,500 - 2,000\":\"rgb(203,24,29)\"}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7fed1930-2cd2-11e9-9b9a-95b7b006b436\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "5eeda1e0-06e5-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Number of Unique Pages Visited", - "visState": "{\"title\":\"Number of Unique Pages Visited\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"details.url\",\"customLabel\":\"Number of Unique Pages Visited\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7fed1930-2cd2-11e9-9b9a-95b7b006b436\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "b7324e60-12ec-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Top URL Visits By Day", - "visState": "{\"title\":\"Top URL Visits By Day\",\"type\":\"heatmap\",\"params\":{\"type\":\"heatmap\",\"addTooltip\":true,\"addLegend\":true,\"enableHover\":false,\"legendPosition\":\"right\",\"times\":[],\"colorsNumber\":4,\"colorSchema\":\"Reds\",\"setColorRange\":false,\"colorsRange\":[],\"invertColors\":false,\"percentageMode\":false,\"valueAxes\":[{\"show\":false,\"id\":\"ValueAxis-1\",\"type\":\"value\",\"scale\":{\"type\":\"linear\",\"defaultYExtents\":false},\"labels\":{\"show\":false,\"rotate\":0,\"color\":\"#555\"}}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"schema\":\"segment\",\"params\":{\"field\":\"clientTime\",\"interval\":\"d\",\"customInterval\":\"2h\",\"min_doc_count\":1,\"extended_bounds\":{},\"customLabel\":\"Days\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"pageUrl\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Unique URLs\"}}]}", - "uiStateJSON": "{\"vis\":{\"defaultColors\":{\"0 - 400\":\"rgb(255,245,240)\",\"400 - 800\":\"rgb(252,187,161)\",\"800 - 1,200\":\"rgb(251,106,74)\",\"1,200 - 1,600\":\"rgb(203,24,29)\"}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7fed1930-2cd2-11e9-9b9a-95b7b006b436\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "d1ba2560-2d03-11e9-9b9a-95b7b006b436", - "_type": "visualization", - "_source": { - "title": "Average Number of Events per Unique Users (Hosts)", - "visState": "{\"aggs\":[{\"enabled\":true,\"id\":\"1\",\"params\":{\"customBucket\":{\"enabled\":true,\"id\":\"1-bucket\",\"params\":{\"field\":\"host\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"order\":\"desc\",\"orderAgg\":{\"enabled\":true,\"id\":\"1-bucket-orderAgg\",\"params\":{},\"schema\":{\"aggFilter\":[\"!top_hits\",\"!percentiles\",\"!median\",\"!std_dev\",\"!derivative\",\"!moving_avg\",\"!serial_diff\",\"!cumulative_sum\",\"!avg_bucket\",\"!max_bucket\",\"!min_bucket\",\"!sum_bucket\"],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"hideCustomLabel\":true,\"max\":null,\"min\":0,\"name\":\"orderAgg\",\"params\":[],\"title\":\"Order Agg\"},\"type\":\"count\"},\"orderBy\":\"custom\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"size\":50},\"schema\":{\"aggFilter\":[],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"max\":null,\"min\":0,\"name\":\"bucketAgg\",\"params\":[],\"title\":\"Bucket Agg\"},\"type\":\"terms\"},\"customMetric\":{\"enabled\":true,\"id\":\"1-metric\",\"params\":{},\"schema\":{\"aggFilter\":[\"!top_hits\",\"!percentiles\",\"!percentile_ranks\",\"!median\",\"!std_dev\",\"!sum_bucket\",\"!avg_bucket\",\"!min_bucket\",\"!max_bucket\",\"!derivative\",\"!moving_avg\",\"!serial_diff\",\"!cumulative_sum\"],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"max\":null,\"min\":0,\"name\":\"metricAgg\",\"params\":[],\"title\":\"Metric Agg\"},\"type\":\"count\"}},\"schema\":\"metric\",\"type\":\"avg_bucket\"}],\"params\":{\"addLegend\":false,\"addTooltip\":true,\"fontSize\":60,\"handleNoResults\":true,\"metric\":{\"colorSchema\":\"Green to Red\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"invertColors\":false,\"labels\":{\"show\":true},\"metricColorMode\":\"None\",\"percentageMode\":false,\"style\":{\"bgColor\":false,\"bgFill\":\"#000\",\"fontSize\":60,\"labelColor\":false,\"subText\":\"\"},\"useRanges\":false},\"type\":\"metric\"},\"title\":\"Average Number of Events per Unique Users (Hosts)\",\"type\":\"metric\"}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7fed1930-2cd2-11e9-9b9a-95b7b006b436\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "822808b0-2d0c-11e9-9b9a-95b7b006b436", - "_type": "visualization", - "_source": { - "title": "Top Web Pages by Unique Visitors", - "visState": "{\"title\":\"Top Web Pages by Unique Visitors\",\"type\":\"table\",\"params\":{\"perPage\":10,\"showPartialRows\":false,\"showMetricsAtAllLevels\":false,\"sort\":{\"columnIndex\":null,\"direction\":null},\"showTotal\":false,\"totalFunc\":\"sum\"},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"host\",\"customLabel\":\"Unique Visitors\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"bucket\",\"params\":{\"field\":\"pageUrl\",\"size\":15,\"order\":\"desc\",\"orderBy\":\"1\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"customLabel\":\"Top Web Pages\"}}]}", - "uiStateJSON": "{\"vis\":{\"params\":{\"sort\":{\"columnIndex\":null,\"direction\":null}}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7fed1930-2cd2-11e9-9b9a-95b7b006b436\",\"query\":{\"query\":\"\",\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "5b467330-06e2-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Number of Unique Users (Hosts)", - "visState": "{\"title\":\"Number of Unique Users (Hosts)\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"host\",\"customLabel\":\"Number of Unique Users\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7fed1930-2cd2-11e9-9b9a-95b7b006b436\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "33e09c60-2ff2-11e9-be20-a737e788a0aa", - "_type": "visualization", - "_source": { - "title": "Funnel", - "visState": "{\"title\":\"Funnel\",\"type\":\"histogram\",\"params\":{\"type\":\"histogram\",\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"type\":\"category\",\"position\":\"bottom\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\"},\"labels\":{\"show\":true,\"truncate\":100},\"title\":{}}],\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"name\":\"LeftAxis-1\",\"type\":\"value\",\"position\":\"left\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\",\"mode\":\"normal\"},\"labels\":{\"show\":true,\"rotate\":0,\"filter\":false,\"truncate\":100},\"title\":{\"text\":\"Unique Users\"}}],\"seriesParams\":[{\"show\":\"true\",\"type\":\"histogram\",\"mode\":\"stacked\",\"data\":{\"label\":\"Unique Users\",\"id\":\"1\"},\"valueAxis\":\"ValueAxis-1\",\"drawLinesBetweenPoints\":true,\"showCircles\":true}],\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"times\":[],\"addTimeMarker\":false},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"host\",\"customLabel\":\"Unique Users\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"filters\",\"schema\":\"segment\",\"params\":{\"filters\":[{\"input\":{\"query\":\"pageUrl:\\\"http://senssoft.incubator.apache.org/\\\"\"},\"label\":\"Apache SensSoft Landing\"},{\"input\":{\"query\":\"pageUrl:\\\"http://senssoft.incubator.apache.org/releases/\\\"\"},\"label\":\"Apache SensSoft Releases\"},{\"input\":{\"query\":\"pageUrl:\\\"http://www.apache.org/dyn/closer.cgi/incubator/senssoft/apache-senssoft-useralejs-1.0.0/apache-senssoft-useralejs-1.0.0-bin.tar.gz\\\"\"},\"label\":\"Download Mirror\"},{\"input\":{\"query\":\"type:\\\"click\\\" AND pageUrl:\\\"http://www.apache.org/dyn/closer.cgi/incubator/senssoft/apache-senssoft-useralejs-1.0.0/apache-senssoft-useralejs-1.0.0-bin.tar.gz\\\" AND target:\\\"strong\\\"\"},\"label\":\"Apache SensSoft Download\"}]}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7fed1930-2cd2-11e9-9b9a-95b7b006b436\",\"query\":{\"query\":\"\",\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "d5a95ce0-06e3-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Page Activity By Day", - "visState": "{\"title\":\"Page Activity By Day\",\"type\":\"heatmap\",\"params\":{\"type\":\"heatmap\",\"addTooltip\":true,\"addLegend\":true,\"enableHover\":false,\"legendPosition\":\"right\",\"times\":[],\"colorsNumber\":4,\"colorSchema\":\"Reds\",\"setColorRange\":false,\"colorsRange\":[],\"invertColors\":false,\"percentageMode\":false,\"valueAxes\":[{\"show\":false,\"id\":\"ValueAxis-1\",\"type\":\"value\",\"scale\":{\"type\":\"linear\",\"defaultYExtents\":false},\"labels\":{\"show\":false,\"rotate\":0,\"color\":\"#555\",\"overwriteColor\":false}}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"schema\":\"segment\",\"params\":{\"field\":\"clientTime\",\"timeRange\":{\"from\":\"now-2y\",\"to\":\"now\",\"mode\":\"quick\"},\"useNormalizedEsInterval\":true,\"interval\":\"d\",\"time_zone\":\"America/New_York\",\"drop_partials\":false,\"customInterval\":\"2h\",\"min_doc_count\":1,\"extended_bounds\":{},\"customLabel\":\"Days\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"pageTitle\",\"size\":8,\"order\":\"desc\",\"orderBy\":\"1\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"customLabel\":\"Unique Pages\"}}]}", - "uiStateJSON": "{\"vis\":{\"defaultColors\":{\"0 - 125\":\"rgb(255,245,240)\",\"125 - 250\":\"rgb(252,187,161)\",\"250 - 375\":\"rgb(251,106,74)\",\"375 - 500\":\"rgb(203,24,29)\"}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7fed1930-2cd2-11e9-9b9a-95b7b006b436\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "e1b6c290-06e1-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Top Pages by Activity", - "visState": "{\"title\":\"Top Pages by Activity\",\"type\":\"pie\",\"params\":{\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"isDonut\":false,\"type\":\"pie\",\"labels\":{\"show\":false,\"values\":true,\"last_level\":true,\"truncate\":100}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Top Event Types\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"pageTitle\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"customLabel\":\"Event types\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7fed1930-2cd2-11e9-9b9a-95b7b006b436\",\"query\":{\"query\":\"*\",\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - } -] \ No newline at end of file
diff --git a/docker/kibana/6.5.4/Saved Objects/Drill-Down Search.json b/docker/kibana/6.5.4/Saved Objects/Drill-Down Search.json deleted file mode 100644 index 749609b..0000000 --- a/docker/kibana/6.5.4/Saved Objects/Drill-Down Search.json +++ /dev/null
@@ -1,22 +0,0 @@ -[ - { - "_id": "67105880-06e6-11e9-8c58-f38cfff498f6", - "_type": "search", - "_source": { - "title": "Drill-Down Search", - "description": "", - "hits": 0, - "columns": [ - "_source" - ], - "sort": [ - "clientTime", - "desc" - ], - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"highlightAll\":true,\"version\":true,\"query\":{\"language\":\"lucene\",\"query\":\"\"},\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"URL Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"http://senssoft.incubator.apache.org/\"},\"query\":{\"match\":{\"pageUrl\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"meta\":{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"negate\":false,\"disabled\":false,\"alias\":\"AppSearch\",\"type\":\"phrase\",\"key\":\"toolName\",\"value\":\"MyApp\",\"params\":{\"query\":\"MyApp\",\"type\":\"phrase\"}},\"query\":{\"match\":{\"toolName\":{\"query\":\"MyApp\",\"type\":\"phrase\"}}},\"$state\":{\"store\":\"appState\"}}]}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/6.5.4/config/kibana.yml b/docker/kibana/6.5.4/config/kibana.yml deleted file mode 100644 index cc93fed..0000000 --- a/docker/kibana/6.5.4/config/kibana.yml +++ /dev/null
@@ -1,18 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -server.name: kibana -server.host: "0" -elasticsearch.url: http://localhost:9200
diff --git a/docker/kibana/6.6.2/Dockerfile b/docker/kibana/6.6.2/Dockerfile deleted file mode 100644 index 53108fc..0000000 --- a/docker/kibana/6.6.2/Dockerfile +++ /dev/null
@@ -1,20 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM docker.elastic.co/kibana/kibana-oss:6.6.2 - -MAINTAINER Joshua Poore <poorejc@apache.org> - -EXPOSE 5601
diff --git a/docker/kibana/6.6.2/Saved Objects/Apache Flagon Business Analytics Dashboard.json b/docker/kibana/6.6.2/Saved Objects/Apache Flagon Business Analytics Dashboard.json deleted file mode 100644 index bd56e2d..0000000 --- a/docker/kibana/6.6.2/Saved Objects/Apache Flagon Business Analytics Dashboard.json +++ /dev/null
@@ -1,18 +0,0 @@ -[ - { - "_id": "90b264d0-2cd4-11e9-9b9a-95b7b006b436", - "_type": "dashboard", - "_source": { - "title": "Apache Flagon Business Analytics Dashboard", - "hits": 0, - "description": "Abstracts Multi-User Interaction with Single Pages/Apps", - "panelsJSON": "[{\"embeddableConfig\":{\"vis\":{\"defaultColors\":{\"0 - 400\":\"rgb(255,245,240)\",\"1,200 - 1,600\":\"rgb(203,24,29)\",\"400 - 800\":\"rgb(252,187,161)\",\"800 - 1,200\":\"rgb(251,106,74)\"},\"legendOpen\":false}},\"gridData\":{\"x\":0,\"y\":84,\"w\":48,\"h\":21,\"i\":\"5\"},\"id\":\"429c0940-fce6-11e8-a156-87bcaf41506e\",\"panelIndex\":\"5\",\"title\":\"Unique User Activity by Day\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"vis\":{\"legendOpen\":false}},\"gridData\":{\"x\":25,\"y\":14,\"w\":23,\"h\":15,\"i\":\"10\"},\"id\":\"20b291b0-12f2-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"10\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"x\":12,\"y\":14,\"w\":13,\"h\":15,\"i\":\"13\"},\"id\":\"d1ba2560-2d03-11e9-9b9a-95b7b006b436\",\"panelIndex\":\"13\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"x\":25,\"y\":29,\"w\":23,\"h\":29,\"i\":\"14\"},\"id\":\"e1b6c290-06e1-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"14\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"x\":0,\"y\":29,\"w\":25,\"h\":29,\"i\":\"15\"},\"id\":\"822808b0-2d0c-11e9-9b9a-95b7b006b436\",\"panelIndex\":\"15\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"x\":0,\"y\":105,\"w\":48,\"h\":26,\"i\":\"16\"},\"id\":\"d5a95ce0-06e3-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"16\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"x\":0,\"y\":0,\"w\":48,\"h\":14,\"i\":\"17\"},\"id\":\"36a0eb90-2cd6-11e9-9b9a-95b7b006b436\",\"panelIndex\":\"17\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"x\":0,\"y\":58,\"w\":48,\"h\":26,\"i\":\"18\"},\"id\":\"33e09c60-2ff2-11e9-be20-a737e788a0aa\",\"panelIndex\":\"18\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"x\":0,\"y\":14,\"w\":12,\"h\":15,\"i\":\"19\"},\"version\":\"6.6.2\",\"panelIndex\":\"19\",\"type\":\"visualization\",\"id\":\"a712e550-a4da-11e9-baf2-196230c538eb\",\"embeddableConfig\":{}}]", - "optionsJSON": "{\"darkTheme\":true,\"useMargins\":false}", - "version": 1, - "timeRestore": false, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":null,\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"toolName\",\"negate\":false,\"params\":{\"query\":\"MyApp\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"MyApp\"},\"query\":{\"match\":{\"toolName\":{\"query\":\"MyApp\",\"type\":\"phrase\"}}}}],\"highlightAll\":true,\"version\":true,\"query\":{\"language\":\"lucene\",\"query\":\"\"}}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/6.6.2/Saved Objects/Apache Flagon Page Usage Dashboard.json b/docker/kibana/6.6.2/Saved Objects/Apache Flagon Page Usage Dashboard.json deleted file mode 100644 index f66ec8c..0000000 --- a/docker/kibana/6.6.2/Saved Objects/Apache Flagon Page Usage Dashboard.json +++ /dev/null
@@ -1,18 +0,0 @@ -[ - { - "_id": "3f02bf70-12eb-11e9-a1e0-631cf5fb9335", - "_type": "dashboard", - "_source": { - "title": "Apache Flagon Page Usage Dashboard", - "hits": 0, - "description": "Abstracts Multi-User Interaction with Single Pages/Apps. Ideal for script-tag, page-level UserALE.js deployments.", - "panelsJSON": "[{\"gridData\":{\"h\":15,\"i\":\"2\",\"w\":32,\"x\":16,\"y\":0},\"id\":\"f7ca4560-be7c-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"2\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"vis\":{\"defaultColors\":{\"0 - 400\":\"rgb(255,245,240)\",\"1,200 - 1,600\":\"rgb(203,24,29)\",\"400 - 800\":\"rgb(252,187,161)\",\"800 - 1,200\":\"rgb(251,106,74)\"},\"legendOpen\":false}},\"gridData\":{\"h\":15,\"i\":\"5\",\"w\":20,\"x\":12,\"y\":15},\"id\":\"429c0940-fce6-11e8-a156-87bcaf41506e\",\"panelIndex\":\"5\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"6\",\"w\":12,\"x\":0,\"y\":15},\"id\":\"5b467330-06e2-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"6\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":45,\"i\":\"7\",\"w\":48,\"x\":0,\"y\":45},\"id\":\"2bf40010-be7d-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"7\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"8\",\"w\":16,\"x\":0,\"y\":0},\"id\":\"ba30fd80-12ee-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"8\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"9\",\"w\":24,\"x\":0,\"y\":30},\"id\":\"bcd7c950-be7c-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"9\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"vis\":{\"legendOpen\":false}},\"gridData\":{\"h\":15,\"i\":\"10\",\"w\":16,\"x\":32,\"y\":15},\"id\":\"20b291b0-12f2-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"10\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"spy\":null},\"gridData\":{\"h\":15,\"i\":\"11\",\"w\":24,\"x\":24,\"y\":30},\"id\":\"bf327a20-12f3-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"11\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":40,\"i\":\"12\",\"w\":48,\"x\":0,\"y\":90},\"id\":\"887fec40-1886-11e9-bdac-e790c2bff4d4\",\"panelIndex\":\"12\",\"type\":\"visualization\",\"version\":\"6.5.4\"}]", - "optionsJSON": "{\"darkTheme\":true,\"useMargins\":false}", - "version": 1, - "timeRestore": false, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"URL Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"http://senssoft.incubator.apache.org/\"},\"query\":{\"match\":{\"pageUrl\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":null,\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"toolName\",\"negate\":false,\"params\":{\"query\":\"MyApp\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"MyApp\"},\"query\":{\"match\":{\"toolName\":{\"query\":\"MyApp\",\"type\":\"phrase\"}}}}],\"highlightAll\":true,\"version\":true,\"query\":{\"query\":\"*\",\"language\":\"lucene\"}}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/6.6.2/Saved Objects/Apache Flagon User Access Dashboard.json b/docker/kibana/6.6.2/Saved Objects/Apache Flagon User Access Dashboard.json deleted file mode 100644 index 68b74bd..0000000 --- a/docker/kibana/6.6.2/Saved Objects/Apache Flagon User Access Dashboard.json +++ /dev/null
@@ -1,18 +0,0 @@ -[ - { - "_id": "ab9f1f90-fce6-11e8-a156-87bcaf41506e", - "_type": "dashboard", - "_source": { - "title": "Apache Flagon User Access Dashboard", - "hits": 0, - "description": "Abstracts Multi-User Utilization of IT Assets (and Web Usage). Ideal for UserALE.js Web Extension deployments.", - "panelsJSON": "[{\"gridData\":{\"h\":15,\"i\":\"2\",\"w\":32,\"x\":16,\"y\":0},\"id\":\"f7ca4560-be7c-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"2\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"spy\":null},\"gridData\":{\"h\":15,\"i\":\"4\",\"w\":16,\"x\":0,\"y\":0},\"id\":\"e36b1f40-be7c-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"4\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"5\",\"w\":36,\"x\":12,\"y\":15},\"id\":\"429c0940-fce6-11e8-a156-87bcaf41506e\",\"panelIndex\":\"5\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"6\",\"w\":12,\"x\":0,\"y\":15},\"id\":\"5b467330-06e2-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"6\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"7\",\"w\":36,\"x\":12,\"y\":45},\"id\":\"e1b6c290-06e1-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"7\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"vis\":{\"colors\":{\"0 - 6\":\"#FCE2DE\"},\"defaultColors\":{\"0 - 6\":\"rgb(255,245,240)\",\"11 - 17\":\"rgb(251,106,74)\",\"17 - 22\":\"rgb(203,24,29)\",\"6 - 11\":\"rgb(252,187,161)\"},\"legendOpen\":true}},\"gridData\":{\"h\":15,\"i\":\"8\",\"w\":48,\"x\":0,\"y\":30},\"id\":\"d5a95ce0-06e3-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"8\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"9\",\"w\":12,\"x\":0,\"y\":45},\"id\":\"5eeda1e0-06e5-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"9\",\"type\":\"visualization\",\"version\":\"6.5.4\"}]", - "optionsJSON": "{\"darkTheme\":true,\"useMargins\":false}", - "version": 1, - "timeRestore": false, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"URL Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":[\"http://senssoft.incubator.apache.org/\"],\"type\":\"phrases\",\"value\":\"http://senssoft.incubator.apache.org/\"},\"query\":{\"bool\":{\"minimum_should_match\":1,\"should\":[{\"match_phrase\":{\"pageUrl\":\"http://senssoft.incubator.apache.org/\"}}]}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":null,\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":[\"https://github.com/apache/incubator-senssoft\"],\"type\":\"phrases\",\"value\":\"https://github.com/apache/incubator-senssoft\"},\"query\":{\"bool\":{\"minimum_should_match\":1,\"should\":[{\"match_phrase\":{\"pageUrl\":\"https://github.com/apache/incubator-senssoft\"}}]}}}],\"highlightAll\":true,\"version\":true,\"query\":{\"language\":\"lucene\",\"query\":{\"query_string\":{\"analyze_wildcard\":true,\"default_field\":\"*\",\"query\":\"*\"}}}}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/6.6.2/Saved Objects/Apache Flagon Visualizations.json b/docker/kibana/6.6.2/Saved Objects/Apache Flagon Visualizations.json deleted file mode 100644 index d7781e2..0000000 --- a/docker/kibana/6.6.2/Saved Objects/Apache Flagon Visualizations.json +++ /dev/null
@@ -1,427 +0,0 @@ -[ - { - "_id": "d5a95ce0-06e3-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Page Activity By Day", - "visState": "{\"title\":\"Page Activity By Day\",\"type\":\"heatmap\",\"params\":{\"type\":\"heatmap\",\"addTooltip\":true,\"addLegend\":true,\"enableHover\":false,\"legendPosition\":\"right\",\"times\":[],\"colorsNumber\":4,\"colorSchema\":\"Reds\",\"setColorRange\":false,\"colorsRange\":[],\"invertColors\":false,\"percentageMode\":false,\"valueAxes\":[{\"show\":false,\"id\":\"ValueAxis-1\",\"type\":\"value\",\"scale\":{\"type\":\"linear\",\"defaultYExtents\":false},\"labels\":{\"show\":false,\"rotate\":0,\"color\":\"#555\",\"overwriteColor\":false}}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"schema\":\"segment\",\"params\":{\"field\":\"clientTime\",\"timeRange\":{\"from\":\"now-2y\",\"to\":\"now\",\"mode\":\"quick\"},\"useNormalizedEsInterval\":true,\"interval\":\"d\",\"time_zone\":\"America/New_York\",\"drop_partials\":false,\"customInterval\":\"2h\",\"min_doc_count\":1,\"extended_bounds\":{},\"customLabel\":\"Days\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"pageTitle\",\"size\":8,\"order\":\"desc\",\"orderBy\":\"1\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"customLabel\":\"Unique Pages\"}}]}", - "uiStateJSON": "{\"vis\":{\"defaultColors\":{\"0 - 125\":\"rgb(255,245,240)\",\"125 - 250\":\"rgb(252,187,161)\",\"250 - 375\":\"rgb(251,106,74)\",\"375 - 500\":\"rgb(203,24,29)\"}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "33e09c60-2ff2-11e9-be20-a737e788a0aa", - "_type": "visualization", - "_source": { - "title": "Funnel", - "visState": "{\"title\":\"Funnel\",\"type\":\"histogram\",\"params\":{\"type\":\"histogram\",\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"type\":\"category\",\"position\":\"bottom\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\"},\"labels\":{\"show\":true,\"truncate\":100},\"title\":{}}],\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"name\":\"LeftAxis-1\",\"type\":\"value\",\"position\":\"left\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\",\"mode\":\"normal\"},\"labels\":{\"show\":true,\"rotate\":0,\"filter\":false,\"truncate\":100},\"title\":{\"text\":\"Unique Users\"}}],\"seriesParams\":[{\"show\":\"true\",\"type\":\"histogram\",\"mode\":\"stacked\",\"data\":{\"label\":\"Unique Users\",\"id\":\"1\"},\"valueAxis\":\"ValueAxis-1\",\"drawLinesBetweenPoints\":true,\"showCircles\":true}],\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"times\":[],\"addTimeMarker\":false},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"host\",\"customLabel\":\"Unique Users\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"filters\",\"schema\":\"segment\",\"params\":{\"filters\":[{\"input\":{\"query\":\"pageUrl:\\\"http://senssoft.incubator.apache.org/\\\"\"},\"label\":\"Apache SensSoft Landing\"},{\"input\":{\"query\":\"pageUrl:\\\"http://senssoft.incubator.apache.org/releases/\\\"\"},\"label\":\"Apache SensSoft Releases\"},{\"input\":{\"query\":\"pageUrl:\\\"http://www.apache.org/dyn/closer.cgi/incubator/senssoft/apache-senssoft-useralejs-1.0.0/apache-senssoft-useralejs-1.0.0-bin.tar.gz\\\"\"},\"label\":\"Download Mirror\"},{\"input\":{\"query\":\"type:\\\"click\\\" AND pageUrl:\\\"http://www.apache.org/dyn/closer.cgi/incubator/senssoft/apache-senssoft-useralejs-1.0.0/apache-senssoft-useralejs-1.0.0-bin.tar.gz\\\" AND target:\\\"strong\\\"\"},\"label\":\"Apache SensSoft Download\"}]}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":\"\",\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "887fec40-1886-11e9-bdac-e790c2bff4d4", - "_type": "visualization", - "_source": { - "title": "A/B Test", - "visState": "{\"title\":\"A/B Test\",\"type\":\"histogram\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"show\":true,\"truncate\":100},\"position\":\"bottom\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"HTML Tags\"},\"type\":\"category\"}],\"defaultYExtents\":false,\"drawLinesBetweenPoints\":true,\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"interpolate\":\"linear\",\"legendPosition\":\"right\",\"radiusRatio\":9,\"scale\":\"linear\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Count\"},\"drawLinesBetweenPoints\":true,\"mode\":\"stacked\",\"show\":\"true\",\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"setYExtents\":false,\"showCircles\":true,\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"left\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Count\"},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"HTML Tags\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"toolVersion\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":20,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"JS Events\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"language\":\"lucene\",\"query\":{\"query_string\":{\"analyze_wildcard\":true,\"default_field\":\"*\",\"query\":\"*\"}}},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "e36b1f40-be7c-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Total Number of Logs", - "visState": "{\"title\":\"Total Number of Logs\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total number of logs\"}}],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "2bf40010-be7d-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Events by Targets", - "visState": "{\"title\":\"Events by Targets\",\"type\":\"histogram\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"show\":true,\"truncate\":100},\"position\":\"bottom\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"HTML Tags\"},\"type\":\"category\"}],\"defaultYExtents\":false,\"drawLinesBetweenPoints\":true,\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"interpolate\":\"linear\",\"legendPosition\":\"right\",\"radiusRatio\":9,\"scale\":\"linear\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Count\"},\"drawLinesBetweenPoints\":true,\"mode\":\"stacked\",\"show\":\"true\",\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"setYExtents\":false,\"showCircles\":true,\"times\":[],\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"left\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"HTML Tags\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"type\",\"size\":20,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"JS Events\"}}],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "64045a30-fce4-11e8-a156-87bcaf41506e", - "_type": "visualization", - "_source": { - "title": "Total Logs by Unique Hosts", - "visState": "{\"title\":\"Total Logs by Unique Hosts\",\"type\":\"horizontal_bar\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":200},\"position\":\"left\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"category\"}],\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"legendPosition\":\"right\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Total Logs\"},\"drawLinesBetweenPoints\":true,\"mode\":\"normal\",\"show\":true,\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":true,\"rotate\":75,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"bottom\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Total Logs\"},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"host\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Unique Hosts\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"language\":\"lucene\",\"query\":\"\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "f7c690a0-12ef-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Top UI Elements Used", - "visState": "{\"title\":\"Top UI Elements Used\",\"type\":\"pie\",\"params\":{\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"isDonut\":false,\"type\":\"pie\",\"labels\":{\"show\":false,\"values\":true,\"last_level\":true,\"truncate\":100}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Element Interactions\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":25,\"order\":\"desc\",\"orderBy\":\"_term\",\"customLabel\":\"UI Elements\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "ba30fd80-12ee-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Number of User Events", - "visState": "{\"title\":\"Number of User Events\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Number of User Events\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "20b291b0-12f2-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Most Active Users by Host", - "visState": "{\"aggs\":[{\"enabled\":true,\"id\":\"1\",\"params\":{\"customLabel\":\"Number of User Events\"},\"schema\":\"metric\",\"type\":\"count\"},{\"enabled\":true,\"id\":\"2\",\"params\":{\"customLabel\":\"Host\",\"field\":\"host\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"order\":\"desc\",\"orderBy\":\"_term\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"size\":5},\"schema\":\"segment\",\"type\":\"terms\"}],\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":200},\"position\":\"left\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"category\"}],\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"legendPosition\":\"right\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Number of User Events\"},\"drawLinesBetweenPoints\":true,\"mode\":\"normal\",\"show\":true,\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":true,\"rotate\":75,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"bottom\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Number of User Events\"},\"type\":\"value\"}]},\"title\":\"Most Active Users by Host\",\"type\":\"horizontal_bar\"}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"language\":\"lucene\",\"query\":\"\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "429c0940-fce6-11e8-a156-87bcaf41506e", - "_type": "visualization", - "_source": { - "title": "Host Activity By Day", - "visState": "{\"title\":\"Host Activity By Day\",\"type\":\"heatmap\",\"params\":{\"type\":\"heatmap\",\"addTooltip\":true,\"addLegend\":true,\"enableHover\":false,\"legendPosition\":\"right\",\"times\":[],\"colorsNumber\":4,\"colorSchema\":\"Reds\",\"setColorRange\":false,\"colorsRange\":[],\"invertColors\":false,\"percentageMode\":false,\"valueAxes\":[{\"show\":false,\"id\":\"ValueAxis-1\",\"type\":\"value\",\"scale\":{\"type\":\"linear\",\"defaultYExtents\":false},\"labels\":{\"show\":false,\"rotate\":0,\"color\":\"#555\"}}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"schema\":\"segment\",\"params\":{\"field\":\"clientTime\",\"interval\":\"d\",\"customInterval\":\"2h\",\"min_doc_count\":1,\"extended_bounds\":{},\"customLabel\":\"Days\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"host\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":true,\"missingBucketLabel\":\"Missing\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Unique Hosts\"}}]}", - "uiStateJSON": "{\"vis\":{\"defaultColors\":{\"0 - 500\":\"rgb(255,245,240)\",\"500 - 1,000\":\"rgb(252,187,161)\",\"1,000 - 1,500\":\"rgb(251,106,74)\",\"1,500 - 2,000\":\"rgb(203,24,29)\"}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "bcd7c950-be7c-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Top Event Types", - "visState": "{\"title\":\"Top Event Types\",\"type\":\"pie\",\"params\":{\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"isDonut\":false},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Top Event Types\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"type\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Event types\"}}],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "bf327a20-12f3-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Top Target UI Element Cloud", - "visState": "{\"title\":\"Top Target UI Element Cloud\",\"type\":\"tagcloud\",\"params\":{\"scale\":\"linear\",\"orientation\":\"single\",\"minFontSize\":8,\"maxFontSize\":29,\"hideLabel\":false},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Count of User Events\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":8,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"UI Elements\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "e1b6c290-06e1-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Top Pages by Activity", - "visState": "{\"title\":\"Top Pages by Activity\",\"type\":\"pie\",\"params\":{\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"isDonut\":false,\"type\":\"pie\",\"labels\":{\"show\":false,\"values\":true,\"last_level\":true,\"truncate\":100}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Top Event Types\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"pageTitle\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"customLabel\":\"Event types\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":\"*\",\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "f7ca4560-be7c-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Time Series", - "visState": "{\"title\":\"Time Series\",\"type\":\"timelion\",\"params\":{\"expression\":\".es(*)\",\"interval\":\"auto\"},\"aggs\":[],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"query\":{\"query\":{\"query_string\":{\"query\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "36a0eb90-2cd6-11e9-9b9a-95b7b006b436", - "_type": "visualization", - "_source": { - "title": "Time-Series Unique Hosts", - "visState": "{\"title\":\"Time-Series Unique Hosts\",\"type\":\"timelion\",\"params\":{\"expression\":\".es(metric=cardinality:host).label('Unique Users (Hosts)')\",\"interval\":\"auto\"},\"aggs\":[]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"query\":{\"language\":\"lucene\",\"query\":\"\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "28070240-2d12-11e9-9b9a-95b7b006b436", - "_type": "visualization", - "_source": { - "title": "Activity by SessionID", - "visState": "{\"type\":\"timelion\",\"title\":\"Activity by SessionID\",\"params\":{\"expression\":\".es(*,split=sessionID:10)\",\"interval\":\"auto\"}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "5eeda1e0-06e5-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Number of Unique Pages Visited", - "visState": "{\"title\":\"Number of Unique Pages Visited\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"details.url\",\"customLabel\":\"Number of Unique Pages Visited\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "822808b0-2d0c-11e9-9b9a-95b7b006b436", - "_type": "visualization", - "_source": { - "title": "Top Web Pages by Unique Visitors", - "visState": "{\"title\":\"Top Web Pages by Unique Visitors\",\"type\":\"table\",\"params\":{\"perPage\":10,\"showPartialRows\":false,\"showMetricsAtAllLevels\":false,\"sort\":{\"columnIndex\":null,\"direction\":null},\"showTotal\":false,\"totalFunc\":\"sum\"},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"host\",\"customLabel\":\"Unique Visitors\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"bucket\",\"params\":{\"field\":\"pageUrl\",\"size\":15,\"order\":\"desc\",\"orderBy\":\"1\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"customLabel\":\"Top Web Pages\"}}]}", - "uiStateJSON": "{\"vis\":{\"params\":{\"sort\":{\"columnIndex\":null,\"direction\":null}}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":\"\",\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "d1ba2560-2d03-11e9-9b9a-95b7b006b436", - "_type": "visualization", - "_source": { - "title": "Average Number of Events per Unique Users (Hosts)", - "visState": "{\"aggs\":[{\"enabled\":true,\"id\":\"1\",\"params\":{\"customBucket\":{\"enabled\":true,\"id\":\"1-bucket\",\"params\":{\"field\":\"host\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"order\":\"desc\",\"orderAgg\":{\"enabled\":true,\"id\":\"1-bucket-orderAgg\",\"params\":{},\"schema\":{\"aggFilter\":[\"!top_hits\",\"!percentiles\",\"!median\",\"!std_dev\",\"!derivative\",\"!moving_avg\",\"!serial_diff\",\"!cumulative_sum\",\"!avg_bucket\",\"!max_bucket\",\"!min_bucket\",\"!sum_bucket\"],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"hideCustomLabel\":true,\"max\":null,\"min\":0,\"name\":\"orderAgg\",\"params\":[],\"title\":\"Order Agg\"},\"type\":\"count\"},\"orderBy\":\"custom\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"size\":50},\"schema\":{\"aggFilter\":[],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"max\":null,\"min\":0,\"name\":\"bucketAgg\",\"params\":[],\"title\":\"Bucket Agg\"},\"type\":\"terms\"},\"customMetric\":{\"enabled\":true,\"id\":\"1-metric\",\"params\":{},\"schema\":{\"aggFilter\":[\"!top_hits\",\"!percentiles\",\"!percentile_ranks\",\"!median\",\"!std_dev\",\"!sum_bucket\",\"!avg_bucket\",\"!min_bucket\",\"!max_bucket\",\"!derivative\",\"!moving_avg\",\"!serial_diff\",\"!cumulative_sum\"],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"max\":null,\"min\":0,\"name\":\"metricAgg\",\"params\":[],\"title\":\"Metric Agg\"},\"type\":\"count\"}},\"schema\":\"metric\",\"type\":\"avg_bucket\"}],\"params\":{\"addLegend\":false,\"addTooltip\":true,\"fontSize\":60,\"handleNoResults\":true,\"metric\":{\"colorSchema\":\"Green to Red\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"invertColors\":false,\"labels\":{\"show\":true},\"metricColorMode\":\"None\",\"percentageMode\":false,\"style\":{\"bgColor\":false,\"bgFill\":\"#000\",\"fontSize\":60,\"labelColor\":false,\"subText\":\"\"},\"useRanges\":false},\"type\":\"metric\"},\"title\":\"Average Number of Events per Unique Users (Hosts)\",\"type\":\"metric\"}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "b7324e60-12ec-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Top URL Visits By Day", - "visState": "{\"title\":\"Top URL Visits By Day\",\"type\":\"heatmap\",\"params\":{\"type\":\"heatmap\",\"addTooltip\":true,\"addLegend\":true,\"enableHover\":false,\"legendPosition\":\"right\",\"times\":[],\"colorsNumber\":4,\"colorSchema\":\"Reds\",\"setColorRange\":false,\"colorsRange\":[],\"invertColors\":false,\"percentageMode\":false,\"valueAxes\":[{\"show\":false,\"id\":\"ValueAxis-1\",\"type\":\"value\",\"scale\":{\"type\":\"linear\",\"defaultYExtents\":false},\"labels\":{\"show\":false,\"rotate\":0,\"color\":\"#555\"}}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"schema\":\"segment\",\"params\":{\"field\":\"clientTime\",\"interval\":\"d\",\"customInterval\":\"2h\",\"min_doc_count\":1,\"extended_bounds\":{},\"customLabel\":\"Days\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"pageUrl\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Unique URLs\"}}]}", - "uiStateJSON": "{\"vis\":{\"defaultColors\":{\"0 - 400\":\"rgb(255,245,240)\",\"400 - 800\":\"rgb(252,187,161)\",\"800 - 1,200\":\"rgb(251,106,74)\",\"1,200 - 1,600\":\"rgb(203,24,29)\"}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "bd56f810-a4da-11e9-baf2-196230c538eb", - "_type": "visualization", - "_source": { - "title": "Average Number of Events per Unique Users (userId)", - "visState": "{\"aggs\":[{\"enabled\":true,\"id\":\"1\",\"params\":{\"customBucket\":{\"enabled\":true,\"id\":\"1-bucket\",\"params\":{\"field\":\"userId\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"order\":\"desc\",\"orderAgg\":{\"enabled\":true,\"id\":\"1-bucket-orderAgg\",\"params\":{},\"schema\":{\"aggFilter\":[\"!top_hits\",\"!percentiles\",\"!median\",\"!std_dev\",\"!derivative\",\"!moving_avg\",\"!serial_diff\",\"!cumulative_sum\",\"!avg_bucket\",\"!max_bucket\",\"!min_bucket\",\"!sum_bucket\"],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"hideCustomLabel\":true,\"max\":null,\"min\":0,\"name\":\"orderAgg\",\"params\":[],\"title\":\"Order Agg\"},\"type\":\"count\"},\"orderBy\":\"custom\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"size\":50},\"schema\":{\"aggFilter\":[],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"max\":null,\"min\":0,\"name\":\"bucketAgg\",\"params\":[],\"title\":\"Bucket Agg\"},\"type\":\"terms\"},\"customMetric\":{\"enabled\":true,\"id\":\"1-metric\",\"params\":{},\"schema\":{\"aggFilter\":[\"!top_hits\",\"!percentiles\",\"!percentile_ranks\",\"!median\",\"!std_dev\",\"!sum_bucket\",\"!avg_bucket\",\"!min_bucket\",\"!max_bucket\",\"!derivative\",\"!moving_avg\",\"!serial_diff\",\"!cumulative_sum\"],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"max\":null,\"min\":0,\"name\":\"metricAgg\",\"params\":[],\"title\":\"Metric Agg\"},\"type\":\"count\"}},\"schema\":\"metric\",\"type\":\"avg_bucket\"}],\"params\":{\"addLegend\":false,\"addTooltip\":true,\"fontSize\":60,\"handleNoResults\":true,\"metric\":{\"colorSchema\":\"Green to Red\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"invertColors\":false,\"labels\":{\"show\":true},\"metricColorMode\":\"None\",\"percentageMode\":false,\"style\":{\"bgColor\":false,\"bgFill\":\"#000\",\"fontSize\":60,\"labelColor\":false,\"subText\":\"\"},\"useRanges\":false},\"type\":\"metric\"},\"title\":\"Average Number of Events per Unique Users (userId)\",\"type\":\"metric\"}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "28b7ad70-a4db-11e9-baf2-196230c538eb", - "_type": "visualization", - "_source": { - "title": "Most Active Users by userId", - "visState": "{\"title\":\"Most Active Users by userId\",\"type\":\"horizontal_bar\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":200},\"position\":\"left\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"category\"}],\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"legendPosition\":\"right\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Number of User Events\"},\"drawLinesBetweenPoints\":true,\"mode\":\"normal\",\"show\":true,\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":true,\"rotate\":75,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"bottom\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Number of User Events\"},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Number of User Events\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"userId\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"_key\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"customLabel\":\"Host\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"language\":\"lucene\",\"query\":\"\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "5b467330-06e2-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Number of Unique Users (userId)", - "visState": "{\"title\":\"Number of Unique Users (userId)\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"userId\",\"customLabel\":\"Number of Unique Users\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "a712e550-a4da-11e9-baf2-196230c538eb", - "_type": "visualization", - "_source": { - "title": "Number of Unique Users (host)", - "visState": "{\"title\":\"Number of Unique Users (host)\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"host\",\"customLabel\":\"Number of Unique Users\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "51622390-a4db-11e9-baf2-196230c538eb", - "_type": "visualization", - "_source": { - "title": "Time-Series Unique Users (userId)", - "visState": "{\"title\":\"Time-Series Unique Users (userId)\",\"type\":\"timelion\",\"params\":{\"expression\":\".es(split=userId:5,metric=cardinality:userId)\",\"interval\":\"auto\"},\"aggs\":[]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"query\":{\"language\":\"lucene\",\"query\":\"\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - } -] \ No newline at end of file
diff --git a/docker/kibana/6.6.2/Saved Objects/Drill-Down Search.json b/docker/kibana/6.6.2/Saved Objects/Drill-Down Search.json deleted file mode 100644 index 749609b..0000000 --- a/docker/kibana/6.6.2/Saved Objects/Drill-Down Search.json +++ /dev/null
@@ -1,22 +0,0 @@ -[ - { - "_id": "67105880-06e6-11e9-8c58-f38cfff498f6", - "_type": "search", - "_source": { - "title": "Drill-Down Search", - "description": "", - "hits": 0, - "columns": [ - "_source" - ], - "sort": [ - "clientTime", - "desc" - ], - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"highlightAll\":true,\"version\":true,\"query\":{\"language\":\"lucene\",\"query\":\"\"},\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"URL Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"http://senssoft.incubator.apache.org/\"},\"query\":{\"match\":{\"pageUrl\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"meta\":{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"negate\":false,\"disabled\":false,\"alias\":\"AppSearch\",\"type\":\"phrase\",\"key\":\"toolName\",\"value\":\"MyApp\",\"params\":{\"query\":\"MyApp\",\"type\":\"phrase\"}},\"query\":{\"match\":{\"toolName\":{\"query\":\"MyApp\",\"type\":\"phrase\"}}},\"$state\":{\"store\":\"appState\"}}]}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/6.6.2/config/kibana.yml b/docker/kibana/6.6.2/config/kibana.yml deleted file mode 100644 index cc93fed..0000000 --- a/docker/kibana/6.6.2/config/kibana.yml +++ /dev/null
@@ -1,18 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -server.name: kibana -server.host: "0" -elasticsearch.url: http://localhost:9200
diff --git a/docker/kibana/6.8.2/Dockerfile b/docker/kibana/6.8.2/Dockerfile deleted file mode 100644 index 1af3d25..0000000 --- a/docker/kibana/6.8.2/Dockerfile +++ /dev/null
@@ -1,20 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM docker.elastic.co/kibana/kibana-oss:6.8.2 - -MAINTAINER Joshua Poore <poorejc@apache.org> - -EXPOSE 5601
diff --git a/docker/kibana/6.8.2/Saved Objects/Apache Flagon Business Analytics Dashboard.json b/docker/kibana/6.8.2/Saved Objects/Apache Flagon Business Analytics Dashboard.json deleted file mode 100644 index bd56e2d..0000000 --- a/docker/kibana/6.8.2/Saved Objects/Apache Flagon Business Analytics Dashboard.json +++ /dev/null
@@ -1,18 +0,0 @@ -[ - { - "_id": "90b264d0-2cd4-11e9-9b9a-95b7b006b436", - "_type": "dashboard", - "_source": { - "title": "Apache Flagon Business Analytics Dashboard", - "hits": 0, - "description": "Abstracts Multi-User Interaction with Single Pages/Apps", - "panelsJSON": "[{\"embeddableConfig\":{\"vis\":{\"defaultColors\":{\"0 - 400\":\"rgb(255,245,240)\",\"1,200 - 1,600\":\"rgb(203,24,29)\",\"400 - 800\":\"rgb(252,187,161)\",\"800 - 1,200\":\"rgb(251,106,74)\"},\"legendOpen\":false}},\"gridData\":{\"x\":0,\"y\":84,\"w\":48,\"h\":21,\"i\":\"5\"},\"id\":\"429c0940-fce6-11e8-a156-87bcaf41506e\",\"panelIndex\":\"5\",\"title\":\"Unique User Activity by Day\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"vis\":{\"legendOpen\":false}},\"gridData\":{\"x\":25,\"y\":14,\"w\":23,\"h\":15,\"i\":\"10\"},\"id\":\"20b291b0-12f2-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"10\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"x\":12,\"y\":14,\"w\":13,\"h\":15,\"i\":\"13\"},\"id\":\"d1ba2560-2d03-11e9-9b9a-95b7b006b436\",\"panelIndex\":\"13\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"x\":25,\"y\":29,\"w\":23,\"h\":29,\"i\":\"14\"},\"id\":\"e1b6c290-06e1-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"14\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"x\":0,\"y\":29,\"w\":25,\"h\":29,\"i\":\"15\"},\"id\":\"822808b0-2d0c-11e9-9b9a-95b7b006b436\",\"panelIndex\":\"15\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"x\":0,\"y\":105,\"w\":48,\"h\":26,\"i\":\"16\"},\"id\":\"d5a95ce0-06e3-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"16\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"x\":0,\"y\":0,\"w\":48,\"h\":14,\"i\":\"17\"},\"id\":\"36a0eb90-2cd6-11e9-9b9a-95b7b006b436\",\"panelIndex\":\"17\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"x\":0,\"y\":58,\"w\":48,\"h\":26,\"i\":\"18\"},\"id\":\"33e09c60-2ff2-11e9-be20-a737e788a0aa\",\"panelIndex\":\"18\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"x\":0,\"y\":14,\"w\":12,\"h\":15,\"i\":\"19\"},\"version\":\"6.6.2\",\"panelIndex\":\"19\",\"type\":\"visualization\",\"id\":\"a712e550-a4da-11e9-baf2-196230c538eb\",\"embeddableConfig\":{}}]", - "optionsJSON": "{\"darkTheme\":true,\"useMargins\":false}", - "version": 1, - "timeRestore": false, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":null,\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"toolName\",\"negate\":false,\"params\":{\"query\":\"MyApp\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"MyApp\"},\"query\":{\"match\":{\"toolName\":{\"query\":\"MyApp\",\"type\":\"phrase\"}}}}],\"highlightAll\":true,\"version\":true,\"query\":{\"language\":\"lucene\",\"query\":\"\"}}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/6.8.2/Saved Objects/Apache Flagon Page Usage Dashboard.json b/docker/kibana/6.8.2/Saved Objects/Apache Flagon Page Usage Dashboard.json deleted file mode 100644 index f66ec8c..0000000 --- a/docker/kibana/6.8.2/Saved Objects/Apache Flagon Page Usage Dashboard.json +++ /dev/null
@@ -1,18 +0,0 @@ -[ - { - "_id": "3f02bf70-12eb-11e9-a1e0-631cf5fb9335", - "_type": "dashboard", - "_source": { - "title": "Apache Flagon Page Usage Dashboard", - "hits": 0, - "description": "Abstracts Multi-User Interaction with Single Pages/Apps. Ideal for script-tag, page-level UserALE.js deployments.", - "panelsJSON": "[{\"gridData\":{\"h\":15,\"i\":\"2\",\"w\":32,\"x\":16,\"y\":0},\"id\":\"f7ca4560-be7c-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"2\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"vis\":{\"defaultColors\":{\"0 - 400\":\"rgb(255,245,240)\",\"1,200 - 1,600\":\"rgb(203,24,29)\",\"400 - 800\":\"rgb(252,187,161)\",\"800 - 1,200\":\"rgb(251,106,74)\"},\"legendOpen\":false}},\"gridData\":{\"h\":15,\"i\":\"5\",\"w\":20,\"x\":12,\"y\":15},\"id\":\"429c0940-fce6-11e8-a156-87bcaf41506e\",\"panelIndex\":\"5\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"6\",\"w\":12,\"x\":0,\"y\":15},\"id\":\"5b467330-06e2-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"6\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":45,\"i\":\"7\",\"w\":48,\"x\":0,\"y\":45},\"id\":\"2bf40010-be7d-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"7\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"8\",\"w\":16,\"x\":0,\"y\":0},\"id\":\"ba30fd80-12ee-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"8\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"9\",\"w\":24,\"x\":0,\"y\":30},\"id\":\"bcd7c950-be7c-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"9\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"vis\":{\"legendOpen\":false}},\"gridData\":{\"h\":15,\"i\":\"10\",\"w\":16,\"x\":32,\"y\":15},\"id\":\"20b291b0-12f2-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"10\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"spy\":null},\"gridData\":{\"h\":15,\"i\":\"11\",\"w\":24,\"x\":24,\"y\":30},\"id\":\"bf327a20-12f3-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"11\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":40,\"i\":\"12\",\"w\":48,\"x\":0,\"y\":90},\"id\":\"887fec40-1886-11e9-bdac-e790c2bff4d4\",\"panelIndex\":\"12\",\"type\":\"visualization\",\"version\":\"6.5.4\"}]", - "optionsJSON": "{\"darkTheme\":true,\"useMargins\":false}", - "version": 1, - "timeRestore": false, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"URL Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"http://senssoft.incubator.apache.org/\"},\"query\":{\"match\":{\"pageUrl\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":null,\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"toolName\",\"negate\":false,\"params\":{\"query\":\"MyApp\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"MyApp\"},\"query\":{\"match\":{\"toolName\":{\"query\":\"MyApp\",\"type\":\"phrase\"}}}}],\"highlightAll\":true,\"version\":true,\"query\":{\"query\":\"*\",\"language\":\"lucene\"}}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/6.8.2/Saved Objects/Apache Flagon User Access Dashboard.json b/docker/kibana/6.8.2/Saved Objects/Apache Flagon User Access Dashboard.json deleted file mode 100644 index 68b74bd..0000000 --- a/docker/kibana/6.8.2/Saved Objects/Apache Flagon User Access Dashboard.json +++ /dev/null
@@ -1,18 +0,0 @@ -[ - { - "_id": "ab9f1f90-fce6-11e8-a156-87bcaf41506e", - "_type": "dashboard", - "_source": { - "title": "Apache Flagon User Access Dashboard", - "hits": 0, - "description": "Abstracts Multi-User Utilization of IT Assets (and Web Usage). Ideal for UserALE.js Web Extension deployments.", - "panelsJSON": "[{\"gridData\":{\"h\":15,\"i\":\"2\",\"w\":32,\"x\":16,\"y\":0},\"id\":\"f7ca4560-be7c-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"2\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"spy\":null},\"gridData\":{\"h\":15,\"i\":\"4\",\"w\":16,\"x\":0,\"y\":0},\"id\":\"e36b1f40-be7c-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"4\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"5\",\"w\":36,\"x\":12,\"y\":15},\"id\":\"429c0940-fce6-11e8-a156-87bcaf41506e\",\"panelIndex\":\"5\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"6\",\"w\":12,\"x\":0,\"y\":15},\"id\":\"5b467330-06e2-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"6\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"7\",\"w\":36,\"x\":12,\"y\":45},\"id\":\"e1b6c290-06e1-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"7\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"vis\":{\"colors\":{\"0 - 6\":\"#FCE2DE\"},\"defaultColors\":{\"0 - 6\":\"rgb(255,245,240)\",\"11 - 17\":\"rgb(251,106,74)\",\"17 - 22\":\"rgb(203,24,29)\",\"6 - 11\":\"rgb(252,187,161)\"},\"legendOpen\":true}},\"gridData\":{\"h\":15,\"i\":\"8\",\"w\":48,\"x\":0,\"y\":30},\"id\":\"d5a95ce0-06e3-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"8\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"9\",\"w\":12,\"x\":0,\"y\":45},\"id\":\"5eeda1e0-06e5-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"9\",\"type\":\"visualization\",\"version\":\"6.5.4\"}]", - "optionsJSON": "{\"darkTheme\":true,\"useMargins\":false}", - "version": 1, - "timeRestore": false, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"URL Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":[\"http://senssoft.incubator.apache.org/\"],\"type\":\"phrases\",\"value\":\"http://senssoft.incubator.apache.org/\"},\"query\":{\"bool\":{\"minimum_should_match\":1,\"should\":[{\"match_phrase\":{\"pageUrl\":\"http://senssoft.incubator.apache.org/\"}}]}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":null,\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":[\"https://github.com/apache/incubator-senssoft\"],\"type\":\"phrases\",\"value\":\"https://github.com/apache/incubator-senssoft\"},\"query\":{\"bool\":{\"minimum_should_match\":1,\"should\":[{\"match_phrase\":{\"pageUrl\":\"https://github.com/apache/incubator-senssoft\"}}]}}}],\"highlightAll\":true,\"version\":true,\"query\":{\"language\":\"lucene\",\"query\":{\"query_string\":{\"analyze_wildcard\":true,\"default_field\":\"*\",\"query\":\"*\"}}}}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/6.8.2/Saved Objects/Apache Flagon Visualizations.json b/docker/kibana/6.8.2/Saved Objects/Apache Flagon Visualizations.json deleted file mode 100644 index d7781e2..0000000 --- a/docker/kibana/6.8.2/Saved Objects/Apache Flagon Visualizations.json +++ /dev/null
@@ -1,427 +0,0 @@ -[ - { - "_id": "d5a95ce0-06e3-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Page Activity By Day", - "visState": "{\"title\":\"Page Activity By Day\",\"type\":\"heatmap\",\"params\":{\"type\":\"heatmap\",\"addTooltip\":true,\"addLegend\":true,\"enableHover\":false,\"legendPosition\":\"right\",\"times\":[],\"colorsNumber\":4,\"colorSchema\":\"Reds\",\"setColorRange\":false,\"colorsRange\":[],\"invertColors\":false,\"percentageMode\":false,\"valueAxes\":[{\"show\":false,\"id\":\"ValueAxis-1\",\"type\":\"value\",\"scale\":{\"type\":\"linear\",\"defaultYExtents\":false},\"labels\":{\"show\":false,\"rotate\":0,\"color\":\"#555\",\"overwriteColor\":false}}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"schema\":\"segment\",\"params\":{\"field\":\"clientTime\",\"timeRange\":{\"from\":\"now-2y\",\"to\":\"now\",\"mode\":\"quick\"},\"useNormalizedEsInterval\":true,\"interval\":\"d\",\"time_zone\":\"America/New_York\",\"drop_partials\":false,\"customInterval\":\"2h\",\"min_doc_count\":1,\"extended_bounds\":{},\"customLabel\":\"Days\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"pageTitle\",\"size\":8,\"order\":\"desc\",\"orderBy\":\"1\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"customLabel\":\"Unique Pages\"}}]}", - "uiStateJSON": "{\"vis\":{\"defaultColors\":{\"0 - 125\":\"rgb(255,245,240)\",\"125 - 250\":\"rgb(252,187,161)\",\"250 - 375\":\"rgb(251,106,74)\",\"375 - 500\":\"rgb(203,24,29)\"}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "33e09c60-2ff2-11e9-be20-a737e788a0aa", - "_type": "visualization", - "_source": { - "title": "Funnel", - "visState": "{\"title\":\"Funnel\",\"type\":\"histogram\",\"params\":{\"type\":\"histogram\",\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"type\":\"category\",\"position\":\"bottom\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\"},\"labels\":{\"show\":true,\"truncate\":100},\"title\":{}}],\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"name\":\"LeftAxis-1\",\"type\":\"value\",\"position\":\"left\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\",\"mode\":\"normal\"},\"labels\":{\"show\":true,\"rotate\":0,\"filter\":false,\"truncate\":100},\"title\":{\"text\":\"Unique Users\"}}],\"seriesParams\":[{\"show\":\"true\",\"type\":\"histogram\",\"mode\":\"stacked\",\"data\":{\"label\":\"Unique Users\",\"id\":\"1\"},\"valueAxis\":\"ValueAxis-1\",\"drawLinesBetweenPoints\":true,\"showCircles\":true}],\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"times\":[],\"addTimeMarker\":false},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"host\",\"customLabel\":\"Unique Users\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"filters\",\"schema\":\"segment\",\"params\":{\"filters\":[{\"input\":{\"query\":\"pageUrl:\\\"http://senssoft.incubator.apache.org/\\\"\"},\"label\":\"Apache SensSoft Landing\"},{\"input\":{\"query\":\"pageUrl:\\\"http://senssoft.incubator.apache.org/releases/\\\"\"},\"label\":\"Apache SensSoft Releases\"},{\"input\":{\"query\":\"pageUrl:\\\"http://www.apache.org/dyn/closer.cgi/incubator/senssoft/apache-senssoft-useralejs-1.0.0/apache-senssoft-useralejs-1.0.0-bin.tar.gz\\\"\"},\"label\":\"Download Mirror\"},{\"input\":{\"query\":\"type:\\\"click\\\" AND pageUrl:\\\"http://www.apache.org/dyn/closer.cgi/incubator/senssoft/apache-senssoft-useralejs-1.0.0/apache-senssoft-useralejs-1.0.0-bin.tar.gz\\\" AND target:\\\"strong\\\"\"},\"label\":\"Apache SensSoft Download\"}]}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":\"\",\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "887fec40-1886-11e9-bdac-e790c2bff4d4", - "_type": "visualization", - "_source": { - "title": "A/B Test", - "visState": "{\"title\":\"A/B Test\",\"type\":\"histogram\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"show\":true,\"truncate\":100},\"position\":\"bottom\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"HTML Tags\"},\"type\":\"category\"}],\"defaultYExtents\":false,\"drawLinesBetweenPoints\":true,\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"interpolate\":\"linear\",\"legendPosition\":\"right\",\"radiusRatio\":9,\"scale\":\"linear\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Count\"},\"drawLinesBetweenPoints\":true,\"mode\":\"stacked\",\"show\":\"true\",\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"setYExtents\":false,\"showCircles\":true,\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"left\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Count\"},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"HTML Tags\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"toolVersion\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":20,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"JS Events\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"language\":\"lucene\",\"query\":{\"query_string\":{\"analyze_wildcard\":true,\"default_field\":\"*\",\"query\":\"*\"}}},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "e36b1f40-be7c-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Total Number of Logs", - "visState": "{\"title\":\"Total Number of Logs\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total number of logs\"}}],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "2bf40010-be7d-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Events by Targets", - "visState": "{\"title\":\"Events by Targets\",\"type\":\"histogram\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"show\":true,\"truncate\":100},\"position\":\"bottom\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"HTML Tags\"},\"type\":\"category\"}],\"defaultYExtents\":false,\"drawLinesBetweenPoints\":true,\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"interpolate\":\"linear\",\"legendPosition\":\"right\",\"radiusRatio\":9,\"scale\":\"linear\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Count\"},\"drawLinesBetweenPoints\":true,\"mode\":\"stacked\",\"show\":\"true\",\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"setYExtents\":false,\"showCircles\":true,\"times\":[],\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"left\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"HTML Tags\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"type\",\"size\":20,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"JS Events\"}}],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "64045a30-fce4-11e8-a156-87bcaf41506e", - "_type": "visualization", - "_source": { - "title": "Total Logs by Unique Hosts", - "visState": "{\"title\":\"Total Logs by Unique Hosts\",\"type\":\"horizontal_bar\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":200},\"position\":\"left\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"category\"}],\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"legendPosition\":\"right\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Total Logs\"},\"drawLinesBetweenPoints\":true,\"mode\":\"normal\",\"show\":true,\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":true,\"rotate\":75,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"bottom\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Total Logs\"},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"host\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Unique Hosts\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"language\":\"lucene\",\"query\":\"\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "f7c690a0-12ef-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Top UI Elements Used", - "visState": "{\"title\":\"Top UI Elements Used\",\"type\":\"pie\",\"params\":{\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"isDonut\":false,\"type\":\"pie\",\"labels\":{\"show\":false,\"values\":true,\"last_level\":true,\"truncate\":100}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Element Interactions\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":25,\"order\":\"desc\",\"orderBy\":\"_term\",\"customLabel\":\"UI Elements\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "ba30fd80-12ee-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Number of User Events", - "visState": "{\"title\":\"Number of User Events\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Number of User Events\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "20b291b0-12f2-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Most Active Users by Host", - "visState": "{\"aggs\":[{\"enabled\":true,\"id\":\"1\",\"params\":{\"customLabel\":\"Number of User Events\"},\"schema\":\"metric\",\"type\":\"count\"},{\"enabled\":true,\"id\":\"2\",\"params\":{\"customLabel\":\"Host\",\"field\":\"host\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"order\":\"desc\",\"orderBy\":\"_term\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"size\":5},\"schema\":\"segment\",\"type\":\"terms\"}],\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":200},\"position\":\"left\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"category\"}],\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"legendPosition\":\"right\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Number of User Events\"},\"drawLinesBetweenPoints\":true,\"mode\":\"normal\",\"show\":true,\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":true,\"rotate\":75,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"bottom\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Number of User Events\"},\"type\":\"value\"}]},\"title\":\"Most Active Users by Host\",\"type\":\"horizontal_bar\"}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"language\":\"lucene\",\"query\":\"\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "429c0940-fce6-11e8-a156-87bcaf41506e", - "_type": "visualization", - "_source": { - "title": "Host Activity By Day", - "visState": "{\"title\":\"Host Activity By Day\",\"type\":\"heatmap\",\"params\":{\"type\":\"heatmap\",\"addTooltip\":true,\"addLegend\":true,\"enableHover\":false,\"legendPosition\":\"right\",\"times\":[],\"colorsNumber\":4,\"colorSchema\":\"Reds\",\"setColorRange\":false,\"colorsRange\":[],\"invertColors\":false,\"percentageMode\":false,\"valueAxes\":[{\"show\":false,\"id\":\"ValueAxis-1\",\"type\":\"value\",\"scale\":{\"type\":\"linear\",\"defaultYExtents\":false},\"labels\":{\"show\":false,\"rotate\":0,\"color\":\"#555\"}}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"schema\":\"segment\",\"params\":{\"field\":\"clientTime\",\"interval\":\"d\",\"customInterval\":\"2h\",\"min_doc_count\":1,\"extended_bounds\":{},\"customLabel\":\"Days\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"host\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":true,\"missingBucketLabel\":\"Missing\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Unique Hosts\"}}]}", - "uiStateJSON": "{\"vis\":{\"defaultColors\":{\"0 - 500\":\"rgb(255,245,240)\",\"500 - 1,000\":\"rgb(252,187,161)\",\"1,000 - 1,500\":\"rgb(251,106,74)\",\"1,500 - 2,000\":\"rgb(203,24,29)\"}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "bcd7c950-be7c-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Top Event Types", - "visState": "{\"title\":\"Top Event Types\",\"type\":\"pie\",\"params\":{\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"isDonut\":false},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Top Event Types\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"type\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Event types\"}}],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "bf327a20-12f3-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Top Target UI Element Cloud", - "visState": "{\"title\":\"Top Target UI Element Cloud\",\"type\":\"tagcloud\",\"params\":{\"scale\":\"linear\",\"orientation\":\"single\",\"minFontSize\":8,\"maxFontSize\":29,\"hideLabel\":false},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Count of User Events\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":8,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"UI Elements\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "e1b6c290-06e1-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Top Pages by Activity", - "visState": "{\"title\":\"Top Pages by Activity\",\"type\":\"pie\",\"params\":{\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"isDonut\":false,\"type\":\"pie\",\"labels\":{\"show\":false,\"values\":true,\"last_level\":true,\"truncate\":100}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Top Event Types\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"pageTitle\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"customLabel\":\"Event types\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":\"*\",\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "f7ca4560-be7c-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Time Series", - "visState": "{\"title\":\"Time Series\",\"type\":\"timelion\",\"params\":{\"expression\":\".es(*)\",\"interval\":\"auto\"},\"aggs\":[],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"query\":{\"query\":{\"query_string\":{\"query\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "36a0eb90-2cd6-11e9-9b9a-95b7b006b436", - "_type": "visualization", - "_source": { - "title": "Time-Series Unique Hosts", - "visState": "{\"title\":\"Time-Series Unique Hosts\",\"type\":\"timelion\",\"params\":{\"expression\":\".es(metric=cardinality:host).label('Unique Users (Hosts)')\",\"interval\":\"auto\"},\"aggs\":[]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"query\":{\"language\":\"lucene\",\"query\":\"\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "28070240-2d12-11e9-9b9a-95b7b006b436", - "_type": "visualization", - "_source": { - "title": "Activity by SessionID", - "visState": "{\"type\":\"timelion\",\"title\":\"Activity by SessionID\",\"params\":{\"expression\":\".es(*,split=sessionID:10)\",\"interval\":\"auto\"}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "5eeda1e0-06e5-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Number of Unique Pages Visited", - "visState": "{\"title\":\"Number of Unique Pages Visited\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"details.url\",\"customLabel\":\"Number of Unique Pages Visited\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "822808b0-2d0c-11e9-9b9a-95b7b006b436", - "_type": "visualization", - "_source": { - "title": "Top Web Pages by Unique Visitors", - "visState": "{\"title\":\"Top Web Pages by Unique Visitors\",\"type\":\"table\",\"params\":{\"perPage\":10,\"showPartialRows\":false,\"showMetricsAtAllLevels\":false,\"sort\":{\"columnIndex\":null,\"direction\":null},\"showTotal\":false,\"totalFunc\":\"sum\"},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"host\",\"customLabel\":\"Unique Visitors\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"bucket\",\"params\":{\"field\":\"pageUrl\",\"size\":15,\"order\":\"desc\",\"orderBy\":\"1\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"customLabel\":\"Top Web Pages\"}}]}", - "uiStateJSON": "{\"vis\":{\"params\":{\"sort\":{\"columnIndex\":null,\"direction\":null}}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":\"\",\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "d1ba2560-2d03-11e9-9b9a-95b7b006b436", - "_type": "visualization", - "_source": { - "title": "Average Number of Events per Unique Users (Hosts)", - "visState": "{\"aggs\":[{\"enabled\":true,\"id\":\"1\",\"params\":{\"customBucket\":{\"enabled\":true,\"id\":\"1-bucket\",\"params\":{\"field\":\"host\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"order\":\"desc\",\"orderAgg\":{\"enabled\":true,\"id\":\"1-bucket-orderAgg\",\"params\":{},\"schema\":{\"aggFilter\":[\"!top_hits\",\"!percentiles\",\"!median\",\"!std_dev\",\"!derivative\",\"!moving_avg\",\"!serial_diff\",\"!cumulative_sum\",\"!avg_bucket\",\"!max_bucket\",\"!min_bucket\",\"!sum_bucket\"],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"hideCustomLabel\":true,\"max\":null,\"min\":0,\"name\":\"orderAgg\",\"params\":[],\"title\":\"Order Agg\"},\"type\":\"count\"},\"orderBy\":\"custom\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"size\":50},\"schema\":{\"aggFilter\":[],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"max\":null,\"min\":0,\"name\":\"bucketAgg\",\"params\":[],\"title\":\"Bucket Agg\"},\"type\":\"terms\"},\"customMetric\":{\"enabled\":true,\"id\":\"1-metric\",\"params\":{},\"schema\":{\"aggFilter\":[\"!top_hits\",\"!percentiles\",\"!percentile_ranks\",\"!median\",\"!std_dev\",\"!sum_bucket\",\"!avg_bucket\",\"!min_bucket\",\"!max_bucket\",\"!derivative\",\"!moving_avg\",\"!serial_diff\",\"!cumulative_sum\"],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"max\":null,\"min\":0,\"name\":\"metricAgg\",\"params\":[],\"title\":\"Metric Agg\"},\"type\":\"count\"}},\"schema\":\"metric\",\"type\":\"avg_bucket\"}],\"params\":{\"addLegend\":false,\"addTooltip\":true,\"fontSize\":60,\"handleNoResults\":true,\"metric\":{\"colorSchema\":\"Green to Red\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"invertColors\":false,\"labels\":{\"show\":true},\"metricColorMode\":\"None\",\"percentageMode\":false,\"style\":{\"bgColor\":false,\"bgFill\":\"#000\",\"fontSize\":60,\"labelColor\":false,\"subText\":\"\"},\"useRanges\":false},\"type\":\"metric\"},\"title\":\"Average Number of Events per Unique Users (Hosts)\",\"type\":\"metric\"}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "b7324e60-12ec-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Top URL Visits By Day", - "visState": "{\"title\":\"Top URL Visits By Day\",\"type\":\"heatmap\",\"params\":{\"type\":\"heatmap\",\"addTooltip\":true,\"addLegend\":true,\"enableHover\":false,\"legendPosition\":\"right\",\"times\":[],\"colorsNumber\":4,\"colorSchema\":\"Reds\",\"setColorRange\":false,\"colorsRange\":[],\"invertColors\":false,\"percentageMode\":false,\"valueAxes\":[{\"show\":false,\"id\":\"ValueAxis-1\",\"type\":\"value\",\"scale\":{\"type\":\"linear\",\"defaultYExtents\":false},\"labels\":{\"show\":false,\"rotate\":0,\"color\":\"#555\"}}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"schema\":\"segment\",\"params\":{\"field\":\"clientTime\",\"interval\":\"d\",\"customInterval\":\"2h\",\"min_doc_count\":1,\"extended_bounds\":{},\"customLabel\":\"Days\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"pageUrl\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Unique URLs\"}}]}", - "uiStateJSON": "{\"vis\":{\"defaultColors\":{\"0 - 400\":\"rgb(255,245,240)\",\"400 - 800\":\"rgb(252,187,161)\",\"800 - 1,200\":\"rgb(251,106,74)\",\"1,200 - 1,600\":\"rgb(203,24,29)\"}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "bd56f810-a4da-11e9-baf2-196230c538eb", - "_type": "visualization", - "_source": { - "title": "Average Number of Events per Unique Users (userId)", - "visState": "{\"aggs\":[{\"enabled\":true,\"id\":\"1\",\"params\":{\"customBucket\":{\"enabled\":true,\"id\":\"1-bucket\",\"params\":{\"field\":\"userId\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"order\":\"desc\",\"orderAgg\":{\"enabled\":true,\"id\":\"1-bucket-orderAgg\",\"params\":{},\"schema\":{\"aggFilter\":[\"!top_hits\",\"!percentiles\",\"!median\",\"!std_dev\",\"!derivative\",\"!moving_avg\",\"!serial_diff\",\"!cumulative_sum\",\"!avg_bucket\",\"!max_bucket\",\"!min_bucket\",\"!sum_bucket\"],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"hideCustomLabel\":true,\"max\":null,\"min\":0,\"name\":\"orderAgg\",\"params\":[],\"title\":\"Order Agg\"},\"type\":\"count\"},\"orderBy\":\"custom\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"size\":50},\"schema\":{\"aggFilter\":[],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"max\":null,\"min\":0,\"name\":\"bucketAgg\",\"params\":[],\"title\":\"Bucket Agg\"},\"type\":\"terms\"},\"customMetric\":{\"enabled\":true,\"id\":\"1-metric\",\"params\":{},\"schema\":{\"aggFilter\":[\"!top_hits\",\"!percentiles\",\"!percentile_ranks\",\"!median\",\"!std_dev\",\"!sum_bucket\",\"!avg_bucket\",\"!min_bucket\",\"!max_bucket\",\"!derivative\",\"!moving_avg\",\"!serial_diff\",\"!cumulative_sum\"],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"max\":null,\"min\":0,\"name\":\"metricAgg\",\"params\":[],\"title\":\"Metric Agg\"},\"type\":\"count\"}},\"schema\":\"metric\",\"type\":\"avg_bucket\"}],\"params\":{\"addLegend\":false,\"addTooltip\":true,\"fontSize\":60,\"handleNoResults\":true,\"metric\":{\"colorSchema\":\"Green to Red\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"invertColors\":false,\"labels\":{\"show\":true},\"metricColorMode\":\"None\",\"percentageMode\":false,\"style\":{\"bgColor\":false,\"bgFill\":\"#000\",\"fontSize\":60,\"labelColor\":false,\"subText\":\"\"},\"useRanges\":false},\"type\":\"metric\"},\"title\":\"Average Number of Events per Unique Users (userId)\",\"type\":\"metric\"}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "28b7ad70-a4db-11e9-baf2-196230c538eb", - "_type": "visualization", - "_source": { - "title": "Most Active Users by userId", - "visState": "{\"title\":\"Most Active Users by userId\",\"type\":\"horizontal_bar\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":200},\"position\":\"left\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"category\"}],\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"legendPosition\":\"right\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Number of User Events\"},\"drawLinesBetweenPoints\":true,\"mode\":\"normal\",\"show\":true,\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":true,\"rotate\":75,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"bottom\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Number of User Events\"},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Number of User Events\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"userId\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"_key\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"customLabel\":\"Host\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"language\":\"lucene\",\"query\":\"\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "5b467330-06e2-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Number of Unique Users (userId)", - "visState": "{\"title\":\"Number of Unique Users (userId)\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"userId\",\"customLabel\":\"Number of Unique Users\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "a712e550-a4da-11e9-baf2-196230c538eb", - "_type": "visualization", - "_source": { - "title": "Number of Unique Users (host)", - "visState": "{\"title\":\"Number of Unique Users (host)\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"host\",\"customLabel\":\"Number of Unique Users\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "51622390-a4db-11e9-baf2-196230c538eb", - "_type": "visualization", - "_source": { - "title": "Time-Series Unique Users (userId)", - "visState": "{\"title\":\"Time-Series Unique Users (userId)\",\"type\":\"timelion\",\"params\":{\"expression\":\".es(split=userId:5,metric=cardinality:userId)\",\"interval\":\"auto\"},\"aggs\":[]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"query\":{\"language\":\"lucene\",\"query\":\"\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - } -] \ No newline at end of file
diff --git a/docker/kibana/6.8.2/Saved Objects/Drill-Down Search.json b/docker/kibana/6.8.2/Saved Objects/Drill-Down Search.json deleted file mode 100644 index 749609b..0000000 --- a/docker/kibana/6.8.2/Saved Objects/Drill-Down Search.json +++ /dev/null
@@ -1,22 +0,0 @@ -[ - { - "_id": "67105880-06e6-11e9-8c58-f38cfff498f6", - "_type": "search", - "_source": { - "title": "Drill-Down Search", - "description": "", - "hits": 0, - "columns": [ - "_source" - ], - "sort": [ - "clientTime", - "desc" - ], - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"highlightAll\":true,\"version\":true,\"query\":{\"language\":\"lucene\",\"query\":\"\"},\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"URL Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"http://senssoft.incubator.apache.org/\"},\"query\":{\"match\":{\"pageUrl\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"meta\":{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"negate\":false,\"disabled\":false,\"alias\":\"AppSearch\",\"type\":\"phrase\",\"key\":\"toolName\",\"value\":\"MyApp\",\"params\":{\"query\":\"MyApp\",\"type\":\"phrase\"}},\"query\":{\"match\":{\"toolName\":{\"query\":\"MyApp\",\"type\":\"phrase\"}}},\"$state\":{\"store\":\"appState\"}}]}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/6.8.2/config/kibana.yml b/docker/kibana/6.8.2/config/kibana.yml deleted file mode 100644 index cc93fed..0000000 --- a/docker/kibana/6.8.2/config/kibana.yml +++ /dev/null
@@ -1,18 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -server.name: kibana -server.host: "0" -elasticsearch.url: http://localhost:9200
diff --git a/docker/kibana/8.11.3/Dockerfile b/docker/kibana/8.11.3/Dockerfile deleted file mode 100644 index 1032f5e..0000000 --- a/docker/kibana/8.11.3/Dockerfile +++ /dev/null
@@ -1,20 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM docker.elastic.co/kibana/kibana:8.11.3 - -MAINTAINER Joshua Poore <poorejc@apache.org> - -EXPOSE 5601
diff --git a/docker/kibana/8.11.3/Saved Objects/Apache Flagon Business Analytics Dashboard.ndjson b/docker/kibana/8.11.3/Saved Objects/Apache Flagon Business Analytics Dashboard.ndjson deleted file mode 100644 index bd56e2d..0000000 --- a/docker/kibana/8.11.3/Saved Objects/Apache Flagon Business Analytics Dashboard.ndjson +++ /dev/null
@@ -1,18 +0,0 @@ -[ - { - "_id": "90b264d0-2cd4-11e9-9b9a-95b7b006b436", - "_type": "dashboard", - "_source": { - "title": "Apache Flagon Business Analytics Dashboard", - "hits": 0, - "description": "Abstracts Multi-User Interaction with Single Pages/Apps", - "panelsJSON": "[{\"embeddableConfig\":{\"vis\":{\"defaultColors\":{\"0 - 400\":\"rgb(255,245,240)\",\"1,200 - 1,600\":\"rgb(203,24,29)\",\"400 - 800\":\"rgb(252,187,161)\",\"800 - 1,200\":\"rgb(251,106,74)\"},\"legendOpen\":false}},\"gridData\":{\"x\":0,\"y\":84,\"w\":48,\"h\":21,\"i\":\"5\"},\"id\":\"429c0940-fce6-11e8-a156-87bcaf41506e\",\"panelIndex\":\"5\",\"title\":\"Unique User Activity by Day\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"vis\":{\"legendOpen\":false}},\"gridData\":{\"x\":25,\"y\":14,\"w\":23,\"h\":15,\"i\":\"10\"},\"id\":\"20b291b0-12f2-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"10\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"x\":12,\"y\":14,\"w\":13,\"h\":15,\"i\":\"13\"},\"id\":\"d1ba2560-2d03-11e9-9b9a-95b7b006b436\",\"panelIndex\":\"13\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"x\":25,\"y\":29,\"w\":23,\"h\":29,\"i\":\"14\"},\"id\":\"e1b6c290-06e1-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"14\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"x\":0,\"y\":29,\"w\":25,\"h\":29,\"i\":\"15\"},\"id\":\"822808b0-2d0c-11e9-9b9a-95b7b006b436\",\"panelIndex\":\"15\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"x\":0,\"y\":105,\"w\":48,\"h\":26,\"i\":\"16\"},\"id\":\"d5a95ce0-06e3-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"16\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"x\":0,\"y\":0,\"w\":48,\"h\":14,\"i\":\"17\"},\"id\":\"36a0eb90-2cd6-11e9-9b9a-95b7b006b436\",\"panelIndex\":\"17\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{},\"gridData\":{\"x\":0,\"y\":58,\"w\":48,\"h\":26,\"i\":\"18\"},\"id\":\"33e09c60-2ff2-11e9-be20-a737e788a0aa\",\"panelIndex\":\"18\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"x\":0,\"y\":14,\"w\":12,\"h\":15,\"i\":\"19\"},\"version\":\"6.6.2\",\"panelIndex\":\"19\",\"type\":\"visualization\",\"id\":\"a712e550-a4da-11e9-baf2-196230c538eb\",\"embeddableConfig\":{}}]", - "optionsJSON": "{\"darkTheme\":true,\"useMargins\":false}", - "version": 1, - "timeRestore": false, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":null,\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"toolName\",\"negate\":false,\"params\":{\"query\":\"MyApp\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"MyApp\"},\"query\":{\"match\":{\"toolName\":{\"query\":\"MyApp\",\"type\":\"phrase\"}}}}],\"highlightAll\":true,\"version\":true,\"query\":{\"language\":\"lucene\",\"query\":\"\"}}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/8.11.3/Saved Objects/Apache Flagon Page Usage Dashboard.ndjson b/docker/kibana/8.11.3/Saved Objects/Apache Flagon Page Usage Dashboard.ndjson deleted file mode 100644 index f66ec8c..0000000 --- a/docker/kibana/8.11.3/Saved Objects/Apache Flagon Page Usage Dashboard.ndjson +++ /dev/null
@@ -1,18 +0,0 @@ -[ - { - "_id": "3f02bf70-12eb-11e9-a1e0-631cf5fb9335", - "_type": "dashboard", - "_source": { - "title": "Apache Flagon Page Usage Dashboard", - "hits": 0, - "description": "Abstracts Multi-User Interaction with Single Pages/Apps. Ideal for script-tag, page-level UserALE.js deployments.", - "panelsJSON": "[{\"gridData\":{\"h\":15,\"i\":\"2\",\"w\":32,\"x\":16,\"y\":0},\"id\":\"f7ca4560-be7c-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"2\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"vis\":{\"defaultColors\":{\"0 - 400\":\"rgb(255,245,240)\",\"1,200 - 1,600\":\"rgb(203,24,29)\",\"400 - 800\":\"rgb(252,187,161)\",\"800 - 1,200\":\"rgb(251,106,74)\"},\"legendOpen\":false}},\"gridData\":{\"h\":15,\"i\":\"5\",\"w\":20,\"x\":12,\"y\":15},\"id\":\"429c0940-fce6-11e8-a156-87bcaf41506e\",\"panelIndex\":\"5\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"6\",\"w\":12,\"x\":0,\"y\":15},\"id\":\"5b467330-06e2-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"6\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":45,\"i\":\"7\",\"w\":48,\"x\":0,\"y\":45},\"id\":\"2bf40010-be7d-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"7\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"8\",\"w\":16,\"x\":0,\"y\":0},\"id\":\"ba30fd80-12ee-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"8\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"9\",\"w\":24,\"x\":0,\"y\":30},\"id\":\"bcd7c950-be7c-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"9\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"vis\":{\"legendOpen\":false}},\"gridData\":{\"h\":15,\"i\":\"10\",\"w\":16,\"x\":32,\"y\":15},\"id\":\"20b291b0-12f2-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"10\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"spy\":null},\"gridData\":{\"h\":15,\"i\":\"11\",\"w\":24,\"x\":24,\"y\":30},\"id\":\"bf327a20-12f3-11e9-a1e0-631cf5fb9335\",\"panelIndex\":\"11\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":40,\"i\":\"12\",\"w\":48,\"x\":0,\"y\":90},\"id\":\"887fec40-1886-11e9-bdac-e790c2bff4d4\",\"panelIndex\":\"12\",\"type\":\"visualization\",\"version\":\"6.5.4\"}]", - "optionsJSON": "{\"darkTheme\":true,\"useMargins\":false}", - "version": 1, - "timeRestore": false, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"URL Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"http://senssoft.incubator.apache.org/\"},\"query\":{\"match\":{\"pageUrl\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":null,\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"toolName\",\"negate\":false,\"params\":{\"query\":\"MyApp\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"MyApp\"},\"query\":{\"match\":{\"toolName\":{\"query\":\"MyApp\",\"type\":\"phrase\"}}}}],\"highlightAll\":true,\"version\":true,\"query\":{\"query\":\"*\",\"language\":\"lucene\"}}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/8.11.3/Saved Objects/Apache Flagon User Access Dashboard.ndjson b/docker/kibana/8.11.3/Saved Objects/Apache Flagon User Access Dashboard.ndjson deleted file mode 100644 index 68b74bd..0000000 --- a/docker/kibana/8.11.3/Saved Objects/Apache Flagon User Access Dashboard.ndjson +++ /dev/null
@@ -1,18 +0,0 @@ -[ - { - "_id": "ab9f1f90-fce6-11e8-a156-87bcaf41506e", - "_type": "dashboard", - "_source": { - "title": "Apache Flagon User Access Dashboard", - "hits": 0, - "description": "Abstracts Multi-User Utilization of IT Assets (and Web Usage). Ideal for UserALE.js Web Extension deployments.", - "panelsJSON": "[{\"gridData\":{\"h\":15,\"i\":\"2\",\"w\":32,\"x\":16,\"y\":0},\"id\":\"f7ca4560-be7c-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"2\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"spy\":null},\"gridData\":{\"h\":15,\"i\":\"4\",\"w\":16,\"x\":0,\"y\":0},\"id\":\"e36b1f40-be7c-11e7-8adf-fd0a12531eca\",\"panelIndex\":\"4\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"5\",\"w\":36,\"x\":12,\"y\":15},\"id\":\"429c0940-fce6-11e8-a156-87bcaf41506e\",\"panelIndex\":\"5\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"6\",\"w\":12,\"x\":0,\"y\":15},\"id\":\"5b467330-06e2-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"6\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"7\",\"w\":36,\"x\":12,\"y\":45},\"id\":\"e1b6c290-06e1-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"7\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"embeddableConfig\":{\"vis\":{\"colors\":{\"0 - 6\":\"#FCE2DE\"},\"defaultColors\":{\"0 - 6\":\"rgb(255,245,240)\",\"11 - 17\":\"rgb(251,106,74)\",\"17 - 22\":\"rgb(203,24,29)\",\"6 - 11\":\"rgb(252,187,161)\"},\"legendOpen\":true}},\"gridData\":{\"h\":15,\"i\":\"8\",\"w\":48,\"x\":0,\"y\":30},\"id\":\"d5a95ce0-06e3-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"8\",\"type\":\"visualization\",\"version\":\"6.5.4\"},{\"gridData\":{\"h\":15,\"i\":\"9\",\"w\":12,\"x\":0,\"y\":45},\"id\":\"5eeda1e0-06e5-11e9-8c58-f38cfff498f6\",\"panelIndex\":\"9\",\"type\":\"visualization\",\"version\":\"6.5.4\"}]", - "optionsJSON": "{\"darkTheme\":true,\"useMargins\":false}", - "version": 1, - "timeRestore": false, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"URL Search\",\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":[\"http://senssoft.incubator.apache.org/\"],\"type\":\"phrases\",\"value\":\"http://senssoft.incubator.apache.org/\"},\"query\":{\"bool\":{\"minimum_should_match\":1,\"should\":[{\"match_phrase\":{\"pageUrl\":\"http://senssoft.incubator.apache.org/\"}}]}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":null,\"disabled\":true,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":[\"https://github.com/apache/incubator-senssoft\"],\"type\":\"phrases\",\"value\":\"https://github.com/apache/incubator-senssoft\"},\"query\":{\"bool\":{\"minimum_should_match\":1,\"should\":[{\"match_phrase\":{\"pageUrl\":\"https://github.com/apache/incubator-senssoft\"}}]}}}],\"highlightAll\":true,\"version\":true,\"query\":{\"language\":\"lucene\",\"query\":{\"query_string\":{\"analyze_wildcard\":true,\"default_field\":\"*\",\"query\":\"*\"}}}}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/8.11.3/Saved Objects/Apache Flagon Visualizations.ndjson b/docker/kibana/8.11.3/Saved Objects/Apache Flagon Visualizations.ndjson deleted file mode 100644 index d7781e2..0000000 --- a/docker/kibana/8.11.3/Saved Objects/Apache Flagon Visualizations.ndjson +++ /dev/null
@@ -1,427 +0,0 @@ -[ - { - "_id": "d5a95ce0-06e3-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Page Activity By Day", - "visState": "{\"title\":\"Page Activity By Day\",\"type\":\"heatmap\",\"params\":{\"type\":\"heatmap\",\"addTooltip\":true,\"addLegend\":true,\"enableHover\":false,\"legendPosition\":\"right\",\"times\":[],\"colorsNumber\":4,\"colorSchema\":\"Reds\",\"setColorRange\":false,\"colorsRange\":[],\"invertColors\":false,\"percentageMode\":false,\"valueAxes\":[{\"show\":false,\"id\":\"ValueAxis-1\",\"type\":\"value\",\"scale\":{\"type\":\"linear\",\"defaultYExtents\":false},\"labels\":{\"show\":false,\"rotate\":0,\"color\":\"#555\",\"overwriteColor\":false}}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"schema\":\"segment\",\"params\":{\"field\":\"clientTime\",\"timeRange\":{\"from\":\"now-2y\",\"to\":\"now\",\"mode\":\"quick\"},\"useNormalizedEsInterval\":true,\"interval\":\"d\",\"time_zone\":\"America/New_York\",\"drop_partials\":false,\"customInterval\":\"2h\",\"min_doc_count\":1,\"extended_bounds\":{},\"customLabel\":\"Days\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"pageTitle\",\"size\":8,\"order\":\"desc\",\"orderBy\":\"1\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"customLabel\":\"Unique Pages\"}}]}", - "uiStateJSON": "{\"vis\":{\"defaultColors\":{\"0 - 125\":\"rgb(255,245,240)\",\"125 - 250\":\"rgb(252,187,161)\",\"250 - 375\":\"rgb(251,106,74)\",\"375 - 500\":\"rgb(203,24,29)\"}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "33e09c60-2ff2-11e9-be20-a737e788a0aa", - "_type": "visualization", - "_source": { - "title": "Funnel", - "visState": "{\"title\":\"Funnel\",\"type\":\"histogram\",\"params\":{\"type\":\"histogram\",\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"type\":\"category\",\"position\":\"bottom\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\"},\"labels\":{\"show\":true,\"truncate\":100},\"title\":{}}],\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"name\":\"LeftAxis-1\",\"type\":\"value\",\"position\":\"left\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\",\"mode\":\"normal\"},\"labels\":{\"show\":true,\"rotate\":0,\"filter\":false,\"truncate\":100},\"title\":{\"text\":\"Unique Users\"}}],\"seriesParams\":[{\"show\":\"true\",\"type\":\"histogram\",\"mode\":\"stacked\",\"data\":{\"label\":\"Unique Users\",\"id\":\"1\"},\"valueAxis\":\"ValueAxis-1\",\"drawLinesBetweenPoints\":true,\"showCircles\":true}],\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"times\":[],\"addTimeMarker\":false},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"host\",\"customLabel\":\"Unique Users\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"filters\",\"schema\":\"segment\",\"params\":{\"filters\":[{\"input\":{\"query\":\"pageUrl:\\\"http://senssoft.incubator.apache.org/\\\"\"},\"label\":\"Apache SensSoft Landing\"},{\"input\":{\"query\":\"pageUrl:\\\"http://senssoft.incubator.apache.org/releases/\\\"\"},\"label\":\"Apache SensSoft Releases\"},{\"input\":{\"query\":\"pageUrl:\\\"http://www.apache.org/dyn/closer.cgi/incubator/senssoft/apache-senssoft-useralejs-1.0.0/apache-senssoft-useralejs-1.0.0-bin.tar.gz\\\"\"},\"label\":\"Download Mirror\"},{\"input\":{\"query\":\"type:\\\"click\\\" AND pageUrl:\\\"http://www.apache.org/dyn/closer.cgi/incubator/senssoft/apache-senssoft-useralejs-1.0.0/apache-senssoft-useralejs-1.0.0-bin.tar.gz\\\" AND target:\\\"strong\\\"\"},\"label\":\"Apache SensSoft Download\"}]}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":\"\",\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "887fec40-1886-11e9-bdac-e790c2bff4d4", - "_type": "visualization", - "_source": { - "title": "A/B Test", - "visState": "{\"title\":\"A/B Test\",\"type\":\"histogram\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"show\":true,\"truncate\":100},\"position\":\"bottom\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"HTML Tags\"},\"type\":\"category\"}],\"defaultYExtents\":false,\"drawLinesBetweenPoints\":true,\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"interpolate\":\"linear\",\"legendPosition\":\"right\",\"radiusRatio\":9,\"scale\":\"linear\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Count\"},\"drawLinesBetweenPoints\":true,\"mode\":\"stacked\",\"show\":\"true\",\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"setYExtents\":false,\"showCircles\":true,\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"left\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Count\"},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"HTML Tags\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"toolVersion\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":20,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"JS Events\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"language\":\"lucene\",\"query\":{\"query_string\":{\"analyze_wildcard\":true,\"default_field\":\"*\",\"query\":\"*\"}}},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "e36b1f40-be7c-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Total Number of Logs", - "visState": "{\"title\":\"Total Number of Logs\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total number of logs\"}}],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "2bf40010-be7d-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Events by Targets", - "visState": "{\"title\":\"Events by Targets\",\"type\":\"histogram\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"show\":true,\"truncate\":100},\"position\":\"bottom\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"HTML Tags\"},\"type\":\"category\"}],\"defaultYExtents\":false,\"drawLinesBetweenPoints\":true,\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"interpolate\":\"linear\",\"legendPosition\":\"right\",\"radiusRatio\":9,\"scale\":\"linear\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Count\"},\"drawLinesBetweenPoints\":true,\"mode\":\"stacked\",\"show\":\"true\",\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"setYExtents\":false,\"showCircles\":true,\"times\":[],\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"left\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"HTML Tags\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"type\",\"size\":20,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"JS Events\"}}],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "64045a30-fce4-11e8-a156-87bcaf41506e", - "_type": "visualization", - "_source": { - "title": "Total Logs by Unique Hosts", - "visState": "{\"title\":\"Total Logs by Unique Hosts\",\"type\":\"horizontal_bar\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":200},\"position\":\"left\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"category\"}],\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"legendPosition\":\"right\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Total Logs\"},\"drawLinesBetweenPoints\":true,\"mode\":\"normal\",\"show\":true,\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":true,\"rotate\":75,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"bottom\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Total Logs\"},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"host\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Unique Hosts\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"language\":\"lucene\",\"query\":\"\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "f7c690a0-12ef-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Top UI Elements Used", - "visState": "{\"title\":\"Top UI Elements Used\",\"type\":\"pie\",\"params\":{\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"isDonut\":false,\"type\":\"pie\",\"labels\":{\"show\":false,\"values\":true,\"last_level\":true,\"truncate\":100}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Element Interactions\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":25,\"order\":\"desc\",\"orderBy\":\"_term\",\"customLabel\":\"UI Elements\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "ba30fd80-12ee-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Number of User Events", - "visState": "{\"title\":\"Number of User Events\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Number of User Events\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "20b291b0-12f2-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Most Active Users by Host", - "visState": "{\"aggs\":[{\"enabled\":true,\"id\":\"1\",\"params\":{\"customLabel\":\"Number of User Events\"},\"schema\":\"metric\",\"type\":\"count\"},{\"enabled\":true,\"id\":\"2\",\"params\":{\"customLabel\":\"Host\",\"field\":\"host\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"order\":\"desc\",\"orderBy\":\"_term\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"size\":5},\"schema\":\"segment\",\"type\":\"terms\"}],\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":200},\"position\":\"left\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"category\"}],\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"legendPosition\":\"right\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Number of User Events\"},\"drawLinesBetweenPoints\":true,\"mode\":\"normal\",\"show\":true,\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":true,\"rotate\":75,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"bottom\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Number of User Events\"},\"type\":\"value\"}]},\"title\":\"Most Active Users by Host\",\"type\":\"horizontal_bar\"}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"language\":\"lucene\",\"query\":\"\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "429c0940-fce6-11e8-a156-87bcaf41506e", - "_type": "visualization", - "_source": { - "title": "Host Activity By Day", - "visState": "{\"title\":\"Host Activity By Day\",\"type\":\"heatmap\",\"params\":{\"type\":\"heatmap\",\"addTooltip\":true,\"addLegend\":true,\"enableHover\":false,\"legendPosition\":\"right\",\"times\":[],\"colorsNumber\":4,\"colorSchema\":\"Reds\",\"setColorRange\":false,\"colorsRange\":[],\"invertColors\":false,\"percentageMode\":false,\"valueAxes\":[{\"show\":false,\"id\":\"ValueAxis-1\",\"type\":\"value\",\"scale\":{\"type\":\"linear\",\"defaultYExtents\":false},\"labels\":{\"show\":false,\"rotate\":0,\"color\":\"#555\"}}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"schema\":\"segment\",\"params\":{\"field\":\"clientTime\",\"interval\":\"d\",\"customInterval\":\"2h\",\"min_doc_count\":1,\"extended_bounds\":{},\"customLabel\":\"Days\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"host\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":true,\"missingBucketLabel\":\"Missing\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Unique Hosts\"}}]}", - "uiStateJSON": "{\"vis\":{\"defaultColors\":{\"0 - 500\":\"rgb(255,245,240)\",\"500 - 1,000\":\"rgb(252,187,161)\",\"1,000 - 1,500\":\"rgb(251,106,74)\",\"1,500 - 2,000\":\"rgb(203,24,29)\"}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "bcd7c950-be7c-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Top Event Types", - "visState": "{\"title\":\"Top Event Types\",\"type\":\"pie\",\"params\":{\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"isDonut\":false},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Top Event Types\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"type\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Event types\"}}],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "bf327a20-12f3-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Top Target UI Element Cloud", - "visState": "{\"title\":\"Top Target UI Element Cloud\",\"type\":\"tagcloud\",\"params\":{\"scale\":\"linear\",\"orientation\":\"single\",\"minFontSize\":8,\"maxFontSize\":29,\"hideLabel\":false},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Count of User Events\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"target\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":8,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"UI Elements\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "e1b6c290-06e1-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Top Pages by Activity", - "visState": "{\"title\":\"Top Pages by Activity\",\"type\":\"pie\",\"params\":{\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"isDonut\":false,\"type\":\"pie\",\"labels\":{\"show\":false,\"values\":true,\"last_level\":true,\"truncate\":100}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Top Event Types\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"pageTitle\",\"size\":100,\"order\":\"desc\",\"orderBy\":\"1\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"customLabel\":\"Event types\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":\"*\",\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "f7ca4560-be7c-11e7-8adf-fd0a12531eca", - "_type": "visualization", - "_source": { - "title": "Time Series", - "visState": "{\"title\":\"Time Series\",\"type\":\"timelion\",\"params\":{\"expression\":\".es(*)\",\"interval\":\"auto\"},\"aggs\":[],\"listeners\":{}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"query\":{\"query\":{\"query_string\":{\"query\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "36a0eb90-2cd6-11e9-9b9a-95b7b006b436", - "_type": "visualization", - "_source": { - "title": "Time-Series Unique Hosts", - "visState": "{\"title\":\"Time-Series Unique Hosts\",\"type\":\"timelion\",\"params\":{\"expression\":\".es(metric=cardinality:host).label('Unique Users (Hosts)')\",\"interval\":\"auto\"},\"aggs\":[]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"query\":{\"language\":\"lucene\",\"query\":\"\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "28070240-2d12-11e9-9b9a-95b7b006b436", - "_type": "visualization", - "_source": { - "title": "Activity by SessionID", - "visState": "{\"type\":\"timelion\",\"title\":\"Activity by SessionID\",\"params\":{\"expression\":\".es(*,split=sessionID:10)\",\"interval\":\"auto\"}}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "5eeda1e0-06e5-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Number of Unique Pages Visited", - "visState": "{\"title\":\"Number of Unique Pages Visited\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"details.url\",\"customLabel\":\"Number of Unique Pages Visited\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "822808b0-2d0c-11e9-9b9a-95b7b006b436", - "_type": "visualization", - "_source": { - "title": "Top Web Pages by Unique Visitors", - "visState": "{\"title\":\"Top Web Pages by Unique Visitors\",\"type\":\"table\",\"params\":{\"perPage\":10,\"showPartialRows\":false,\"showMetricsAtAllLevels\":false,\"sort\":{\"columnIndex\":null,\"direction\":null},\"showTotal\":false,\"totalFunc\":\"sum\"},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"host\",\"customLabel\":\"Unique Visitors\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"bucket\",\"params\":{\"field\":\"pageUrl\",\"size\":15,\"order\":\"desc\",\"orderBy\":\"1\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"customLabel\":\"Top Web Pages\"}}]}", - "uiStateJSON": "{\"vis\":{\"params\":{\"sort\":{\"columnIndex\":null,\"direction\":null}}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":\"\",\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "d1ba2560-2d03-11e9-9b9a-95b7b006b436", - "_type": "visualization", - "_source": { - "title": "Average Number of Events per Unique Users (Hosts)", - "visState": "{\"aggs\":[{\"enabled\":true,\"id\":\"1\",\"params\":{\"customBucket\":{\"enabled\":true,\"id\":\"1-bucket\",\"params\":{\"field\":\"host\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"order\":\"desc\",\"orderAgg\":{\"enabled\":true,\"id\":\"1-bucket-orderAgg\",\"params\":{},\"schema\":{\"aggFilter\":[\"!top_hits\",\"!percentiles\",\"!median\",\"!std_dev\",\"!derivative\",\"!moving_avg\",\"!serial_diff\",\"!cumulative_sum\",\"!avg_bucket\",\"!max_bucket\",\"!min_bucket\",\"!sum_bucket\"],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"hideCustomLabel\":true,\"max\":null,\"min\":0,\"name\":\"orderAgg\",\"params\":[],\"title\":\"Order Agg\"},\"type\":\"count\"},\"orderBy\":\"custom\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"size\":50},\"schema\":{\"aggFilter\":[],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"max\":null,\"min\":0,\"name\":\"bucketAgg\",\"params\":[],\"title\":\"Bucket Agg\"},\"type\":\"terms\"},\"customMetric\":{\"enabled\":true,\"id\":\"1-metric\",\"params\":{},\"schema\":{\"aggFilter\":[\"!top_hits\",\"!percentiles\",\"!percentile_ranks\",\"!median\",\"!std_dev\",\"!sum_bucket\",\"!avg_bucket\",\"!min_bucket\",\"!max_bucket\",\"!derivative\",\"!moving_avg\",\"!serial_diff\",\"!cumulative_sum\"],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"max\":null,\"min\":0,\"name\":\"metricAgg\",\"params\":[],\"title\":\"Metric Agg\"},\"type\":\"count\"}},\"schema\":\"metric\",\"type\":\"avg_bucket\"}],\"params\":{\"addLegend\":false,\"addTooltip\":true,\"fontSize\":60,\"handleNoResults\":true,\"metric\":{\"colorSchema\":\"Green to Red\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"invertColors\":false,\"labels\":{\"show\":true},\"metricColorMode\":\"None\",\"percentageMode\":false,\"style\":{\"bgColor\":false,\"bgFill\":\"#000\",\"fontSize\":60,\"labelColor\":false,\"subText\":\"\"},\"useRanges\":false},\"type\":\"metric\"},\"title\":\"Average Number of Events per Unique Users (Hosts)\",\"type\":\"metric\"}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "b7324e60-12ec-11e9-a1e0-631cf5fb9335", - "_type": "visualization", - "_source": { - "title": "Top URL Visits By Day", - "visState": "{\"title\":\"Top URL Visits By Day\",\"type\":\"heatmap\",\"params\":{\"type\":\"heatmap\",\"addTooltip\":true,\"addLegend\":true,\"enableHover\":false,\"legendPosition\":\"right\",\"times\":[],\"colorsNumber\":4,\"colorSchema\":\"Reds\",\"setColorRange\":false,\"colorsRange\":[],\"invertColors\":false,\"percentageMode\":false,\"valueAxes\":[{\"show\":false,\"id\":\"ValueAxis-1\",\"type\":\"value\",\"scale\":{\"type\":\"linear\",\"defaultYExtents\":false},\"labels\":{\"show\":false,\"rotate\":0,\"color\":\"#555\"}}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Total Logs\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"date_histogram\",\"schema\":\"segment\",\"params\":{\"field\":\"clientTime\",\"interval\":\"d\",\"customInterval\":\"2h\",\"min_doc_count\":1,\"extended_bounds\":{},\"customLabel\":\"Days\"}},{\"id\":\"3\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"group\",\"params\":{\"field\":\"pageUrl\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"1\",\"customLabel\":\"Unique URLs\"}}]}", - "uiStateJSON": "{\"vis\":{\"defaultColors\":{\"0 - 400\":\"rgb(255,245,240)\",\"400 - 800\":\"rgb(252,187,161)\",\"800 - 1,200\":\"rgb(251,106,74)\",\"1,200 - 1,600\":\"rgb(203,24,29)\"}}}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"query\":\"\",\"language\":\"lucene\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "bd56f810-a4da-11e9-baf2-196230c538eb", - "_type": "visualization", - "_source": { - "title": "Average Number of Events per Unique Users (userId)", - "visState": "{\"aggs\":[{\"enabled\":true,\"id\":\"1\",\"params\":{\"customBucket\":{\"enabled\":true,\"id\":\"1-bucket\",\"params\":{\"field\":\"userId\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"order\":\"desc\",\"orderAgg\":{\"enabled\":true,\"id\":\"1-bucket-orderAgg\",\"params\":{},\"schema\":{\"aggFilter\":[\"!top_hits\",\"!percentiles\",\"!median\",\"!std_dev\",\"!derivative\",\"!moving_avg\",\"!serial_diff\",\"!cumulative_sum\",\"!avg_bucket\",\"!max_bucket\",\"!min_bucket\",\"!sum_bucket\"],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"hideCustomLabel\":true,\"max\":null,\"min\":0,\"name\":\"orderAgg\",\"params\":[],\"title\":\"Order Agg\"},\"type\":\"count\"},\"orderBy\":\"custom\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"size\":50},\"schema\":{\"aggFilter\":[],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"max\":null,\"min\":0,\"name\":\"bucketAgg\",\"params\":[],\"title\":\"Bucket Agg\"},\"type\":\"terms\"},\"customMetric\":{\"enabled\":true,\"id\":\"1-metric\",\"params\":{},\"schema\":{\"aggFilter\":[\"!top_hits\",\"!percentiles\",\"!percentile_ranks\",\"!median\",\"!std_dev\",\"!sum_bucket\",\"!avg_bucket\",\"!min_bucket\",\"!max_bucket\",\"!derivative\",\"!moving_avg\",\"!serial_diff\",\"!cumulative_sum\"],\"deprecate\":false,\"editor\":false,\"group\":\"none\",\"max\":null,\"min\":0,\"name\":\"metricAgg\",\"params\":[],\"title\":\"Metric Agg\"},\"type\":\"count\"}},\"schema\":\"metric\",\"type\":\"avg_bucket\"}],\"params\":{\"addLegend\":false,\"addTooltip\":true,\"fontSize\":60,\"handleNoResults\":true,\"metric\":{\"colorSchema\":\"Green to Red\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"invertColors\":false,\"labels\":{\"show\":true},\"metricColorMode\":\"None\",\"percentageMode\":false,\"style\":{\"bgColor\":false,\"bgFill\":\"#000\",\"fontSize\":60,\"labelColor\":false,\"subText\":\"\"},\"useRanges\":false},\"type\":\"metric\"},\"title\":\"Average Number of Events per Unique Users (userId)\",\"type\":\"metric\"}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "28b7ad70-a4db-11e9-baf2-196230c538eb", - "_type": "visualization", - "_source": { - "title": "Most Active Users by userId", - "visState": "{\"title\":\"Most Active Users by userId\",\"type\":\"horizontal_bar\",\"params\":{\"addLegend\":true,\"addTimeMarker\":false,\"addTooltip\":true,\"categoryAxes\":[{\"id\":\"CategoryAxis-1\",\"labels\":{\"filter\":false,\"rotate\":0,\"show\":true,\"truncate\":200},\"position\":\"left\",\"scale\":{\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{},\"type\":\"category\"}],\"grid\":{\"categoryLines\":false,\"style\":{\"color\":\"#eee\"}},\"legendPosition\":\"right\",\"seriesParams\":[{\"data\":{\"id\":\"1\",\"label\":\"Number of User Events\"},\"drawLinesBetweenPoints\":true,\"mode\":\"normal\",\"show\":true,\"showCircles\":true,\"type\":\"histogram\",\"valueAxis\":\"ValueAxis-1\"}],\"times\":[],\"type\":\"histogram\",\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"labels\":{\"filter\":true,\"rotate\":75,\"show\":true,\"truncate\":100},\"name\":\"LeftAxis-1\",\"position\":\"bottom\",\"scale\":{\"mode\":\"normal\",\"type\":\"linear\"},\"show\":true,\"style\":{},\"title\":{\"text\":\"Number of User Events\"},\"type\":\"value\"}]},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"count\",\"schema\":\"metric\",\"params\":{\"customLabel\":\"Number of User Events\"}},{\"id\":\"2\",\"enabled\":true,\"type\":\"terms\",\"schema\":\"segment\",\"params\":{\"field\":\"userId\",\"size\":5,\"order\":\"desc\",\"orderBy\":\"_key\",\"otherBucket\":false,\"otherBucketLabel\":\"Other\",\"missingBucket\":false,\"missingBucketLabel\":\"Missing\",\"customLabel\":\"Host\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"filter\":[],\"query\":{\"language\":\"lucene\",\"query\":\"\"}}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "5b467330-06e2-11e9-8c58-f38cfff498f6", - "_type": "visualization", - "_source": { - "title": "Number of Unique Users (userId)", - "visState": "{\"title\":\"Number of Unique Users (userId)\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"userId\",\"customLabel\":\"Number of Unique Users\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "a712e550-a4da-11e9-baf2-196230c538eb", - "_type": "visualization", - "_source": { - "title": "Number of Unique Users (host)", - "visState": "{\"title\":\"Number of Unique Users (host)\",\"type\":\"metric\",\"params\":{\"handleNoResults\":true,\"fontSize\":60,\"addTooltip\":true,\"addLegend\":false,\"type\":\"metric\",\"metric\":{\"percentageMode\":false,\"useRanges\":false,\"colorSchema\":\"Green to Red\",\"metricColorMode\":\"None\",\"colorsRange\":[{\"from\":0,\"to\":10000}],\"labels\":{\"show\":true},\"invertColors\":false,\"style\":{\"bgFill\":\"#000\",\"bgColor\":false,\"labelColor\":false,\"subText\":\"\",\"fontSize\":60}}},\"aggs\":[{\"id\":\"1\",\"enabled\":true,\"type\":\"cardinality\",\"schema\":\"metric\",\"params\":{\"field\":\"host\",\"customLabel\":\"Number of Unique Users\"}}]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"7f1f6a80-a4d7-11e9-baf2-196230c538eb\",\"query\":{\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true,\"default_field\":\"*\"}},\"language\":\"lucene\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - }, - { - "_id": "51622390-a4db-11e9-baf2-196230c538eb", - "_type": "visualization", - "_source": { - "title": "Time-Series Unique Users (userId)", - "visState": "{\"title\":\"Time-Series Unique Users (userId)\",\"type\":\"timelion\",\"params\":{\"expression\":\".es(split=userId:5,metric=cardinality:userId)\",\"interval\":\"auto\"},\"aggs\":[]}", - "uiStateJSON": "{}", - "description": "", - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"query\":{\"language\":\"lucene\",\"query\":\"\"},\"filter\":[]}" - } - }, - "_meta": { - "savedObjectVersion": 2 - } - } -] \ No newline at end of file
diff --git a/docker/kibana/8.11.3/Saved Objects/Drill-Down Search.ndjson b/docker/kibana/8.11.3/Saved Objects/Drill-Down Search.ndjson deleted file mode 100644 index 749609b..0000000 --- a/docker/kibana/8.11.3/Saved Objects/Drill-Down Search.ndjson +++ /dev/null
@@ -1,22 +0,0 @@ -[ - { - "_id": "67105880-06e6-11e9-8c58-f38cfff498f6", - "_type": "search", - "_source": { - "title": "Drill-Down Search", - "description": "", - "hits": 0, - "columns": [ - "_source" - ], - "sort": [ - "clientTime", - "desc" - ], - "version": 1, - "kibanaSavedObjectMeta": { - "searchSourceJSON": "{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"highlightAll\":true,\"version\":true,\"query\":{\"language\":\"lucene\",\"query\":\"\"},\"filter\":[{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"URL Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"pageUrl\",\"negate\":false,\"params\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"http://senssoft.incubator.apache.org/\"},\"query\":{\"match\":{\"pageUrl\":{\"query\":\"http://senssoft.incubator.apache.org/\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"UserID Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"userId\",\"negate\":false,\"params\":{\"query\":\"nobody\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"nobody\"},\"query\":{\"match\":{\"userId\":{\"query\":\"nobody\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Host Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"host\",\"negate\":false,\"params\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"172.18.0.1\"},\"query\":{\"match\":{\"host\":{\"query\":\"172.18.0.1\",\"type\":\"phrase\"}}}},{\"$state\":{\"store\":\"appState\"},\"meta\":{\"alias\":\"Event Type Search\",\"disabled\":false,\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"key\":\"type\",\"negate\":false,\"params\":{\"query\":\"click\",\"type\":\"phrase\"},\"type\":\"phrase\",\"value\":\"click\"},\"query\":{\"match\":{\"type\":{\"query\":\"click\",\"type\":\"phrase\"}}}},{\"meta\":{\"index\":\"bdce0520-06df-11e9-8c58-f38cfff498f6\",\"negate\":false,\"disabled\":false,\"alias\":\"AppSearch\",\"type\":\"phrase\",\"key\":\"toolName\",\"value\":\"MyApp\",\"params\":{\"query\":\"MyApp\",\"type\":\"phrase\"}},\"query\":{\"match\":{\"toolName\":{\"query\":\"MyApp\",\"type\":\"phrase\"}}},\"$state\":{\"store\":\"appState\"}}]}" - } - } - } -] \ No newline at end of file
diff --git a/docker/kibana/8.11.3/config/kibana.yml b/docker/kibana/8.11.3/config/kibana.yml deleted file mode 100644 index cc93fed..0000000 --- a/docker/kibana/8.11.3/config/kibana.yml +++ /dev/null
@@ -1,18 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -server.name: kibana -server.host: "0" -elasticsearch.url: http://localhost:9200
diff --git a/docker/kibana/Dockerfile b/docker/kibana/Dockerfile new file mode 100644 index 0000000..9a075be --- /dev/null +++ b/docker/kibana/Dockerfile
@@ -0,0 +1,7 @@ +ARG ELASTIC_VERSION + +# https://www.docker.elastic.co/ +FROM docker.elastic.co/kibana/kibana:${ELASTIC_VERSION} + +# Add your kibana plugins setup here +# Example: RUN kibana-plugin install <name|url>
diff --git a/docker/kibana/config/kibana.yml b/docker/kibana/config/kibana.yml new file mode 100644 index 0000000..ef3f024 --- /dev/null +++ b/docker/kibana/config/kibana.yml
@@ -0,0 +1,99 @@ +--- +## Default Kibana configuration from Kibana base image. +## https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/templates/kibana_yml.template.ts +# +server.name: kibana +server.host: 0.0.0.0 +elasticsearch.hosts: [ http://elasticsearch:9200 ] + +monitoring.ui.container.elasticsearch.enabled: true +monitoring.ui.container.logstash.enabled: true + +## X-Pack security credentials +# +elasticsearch.username: kibana_system +elasticsearch.password: ${KIBANA_SYSTEM_PASSWORD} + +## Encryption keys (optional but highly recommended) +## +## Generate with either +## $ docker container run --rm docker.elastic.co/kibana/kibana:8.6.2 bin/kibana-encryption-keys generate +## $ openssl rand -hex 32 +## +## https://www.elastic.co/guide/en/kibana/current/using-kibana-with-security.html +## https://www.elastic.co/guide/en/kibana/current/kibana-encryption-keys.html +# +#xpack.security.encryptionKey: +#xpack.encryptedSavedObjects.encryptionKey: +#xpack.reporting.encryptionKey: + +## Fleet +## https://www.elastic.co/guide/en/kibana/current/fleet-settings-kb.html +# +xpack.fleet.agents.fleet_server.hosts: [ http://fleet-server:8220 ] + +xpack.fleet.outputs: + - id: fleet-default-output + name: default + type: elasticsearch + hosts: [ http://elasticsearch:9200 ] + is_default: true + is_default_monitoring: true + +xpack.fleet.packages: + - name: fleet_server + version: latest + - name: system + version: latest + - name: elastic_agent + version: latest + - name: docker + version: latest + - name: apm + version: latest + +xpack.fleet.agentPolicies: + - name: Fleet Server Policy + id: fleet-server-policy + description: Static agent policy for Fleet Server + monitoring_enabled: + - logs + - metrics + package_policies: + - name: fleet_server-1 + package: + name: fleet_server + - name: system-1 + package: + name: system + - name: elastic_agent-1 + package: + name: elastic_agent + - name: docker-1 + package: + name: docker + - name: Agent Policy APM Server + id: agent-policy-apm-server + description: Static agent policy for the APM Server integration + monitoring_enabled: + - logs + - metrics + package_policies: + - name: system-1 + package: + name: system + - name: elastic_agent-1 + package: + name: elastic_agent + - name: apm-1 + package: + name: apm + # See the APM package manifest for a list of possible inputs. + # https://github.com/elastic/apm-server/blob/v8.5.0/apmpackage/apm/manifest.yml#L41-L168 + inputs: + - type: apm + vars: + - name: host + value: 0.0.0.0:8200 + - name: url + value: http://apm-server:8200
diff --git a/docker/logstash/.dockerignore b/docker/logstash/.dockerignore new file mode 100644 index 0000000..37eef9d --- /dev/null +++ b/docker/logstash/.dockerignore
@@ -0,0 +1,6 @@ +# Ignore Docker build files +Dockerfile +.dockerignore + +# Ignore OS artifacts +**/.DS_Store
diff --git a/docker/logstash/5.6.3/Dockerfile b/docker/logstash/5.6.3/Dockerfile deleted file mode 100644 index 0cd9cd7..0000000 --- a/docker/logstash/5.6.3/Dockerfile +++ /dev/null
@@ -1,31 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM docker.elastic.co/logstash/logstash:5.6.3 -MAINTAINER Michelle Beard <msbeard@apache.org> - -RUN mkdir /usr/share/logstash/templates -RUN rm -f /usr/share/logstash/pipeline/logstash.conf - -RUN logstash-plugin remove x-pack - -# Known issue: https://github.com/elastic/logstash-docker/issues/45 -RUN sed -i '/xpack/d' /usr/share/logstash/config/logstash.yml - -# Copy Configuration files over -COPY config/logstash-userale.conf /usr/share/logstash/pipeline/logstash-userale.conf -COPY templates/userale.json /usr/share/logstash/templates/userale.json - -EXPOSE 8100 \ No newline at end of file
diff --git a/docker/logstash/5.6.3/config/logstash-userale.conf b/docker/logstash/5.6.3/config/logstash-userale.conf deleted file mode 100644 index 4af6ee7..0000000 --- a/docker/logstash/5.6.3/config/logstash-userale.conf +++ /dev/null
@@ -1,53 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -input { - http { - codec => "json" - port => 8100 - response_headers => { - "Access-Control-Allow-Origin" => "*" - "Access-Control-Allow-Headers" => "Origin, X-Requested-With, Content-Type, Accept" - } - } -} - -## Add your filters / logstash plugins configuration here -filter { - mutate { - remove_field => [ "message", "@version", "headers"] - } - - grok { - match => [ "useraleVersion", "(?<major_ver>\d+).(?<minor_ver>\d+)(.(?<patch_ver>\d+))?" ] - match => [ "toolVersion", "(?<tool_major_ver>\d+).(?<tool_minor_ver>\d+)(.(?<tool_patch_ver>\d+))?" ] - } -} - -output { - # Output data to Elasticsearch instance - elasticsearch { - hosts => "${ELASTICSEARCH_URL}" - index => "userale" - document_type => "logs" - manage_template => true - template_overwrite => true - template => "/usr/share/logstash/templates/userale.json" - template_name => "userale" - } - - # Debug - # stdout { codec => rubydebug } -}
diff --git a/docker/logstash/5.6.3/templates/userale.json b/docker/logstash/5.6.3/templates/userale.json deleted file mode 100644 index c1bdbb1..0000000 --- a/docker/logstash/5.6.3/templates/userale.json +++ /dev/null
@@ -1,150 +0,0 @@ -{ - "template": "userale", - "order": 1, - "settings": - { - "number_of_shards": 1, - "number_of_replicas": 0, - "index.refresh_interval": "5s", - "analysis": { - "analyzer": { - "my_analyzer": { - "tokenizer": "my_tokenizer" - } - }, - "tokenizer": { - "my_tokenizer": { - "type": "path_hierarchy" - } - } - } - }, - "mappings": - { - "_default_": - { - "_all": - { - "enabled": false - } - }, - "logs": - { - "dynamic_templates": [ - { - "strings_as_keywords": { - "match_mapping_type": "string", - "mapping": { - "type": "keyword" - } - } - } - ], - "dynamic": "true", - "properties": - { - "userAction": - { - "type": "boolean" - }, - "clientTime": - { - "type": "date", - "format": "strict_date_optional_time||epoch_millis" - }, - "count": - { - "type": "integer" - }, - "targetChange": - { - "type": "boolean" - }, - "typeChange": - { - "type": "boolean" - }, - "details": - { - "properties": - { - "alt": - { - "type": "boolean" - }, - "clicks": - { - "type": "integer" - }, - "ctrl": - { - "type": "boolean" - }, - "meta": - { - "type": "boolean" - }, - "shift": - { - "type": "boolean" - }, - "window": - { - "type": "boolean" - }, - "x": - { - "type": "integer" - }, - "y": - { - "type": "integer" - }, - "z": - { - "type": "integer" - } - } - }, - "location": - { - "properties": - { - "x": - { - "type": "integer" - }, - "y": - { - "type": "integer" - } - } - }, - "major_ver": - { - "type": "integer" - }, - "minor_ver": - { - "type": "integer" - }, - "patch_ver": - { - "type": "integer" - }, - "tool_major_ver": - { - "type": "integer" - }, - "tool_minor_ver": - { - "type": "integer" - }, - "tool_patch_ver": - { - "type": "integer" - } - } - } - } -} \ No newline at end of file
diff --git a/docker/logstash/6.2.2/Dockerfile b/docker/logstash/6.2.2/Dockerfile deleted file mode 100644 index d041e48..0000000 --- a/docker/logstash/6.2.2/Dockerfile +++ /dev/null
@@ -1,31 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM docker.elastic.co/logstash/logstash-oss:6.2.2 -MAINTAINER Michelle Beard <msbeard@apache.org> - -# Ensure default logstash configuration is removed -RUN rm -f /usr/share/logstash/pipeline/logstash.conf - -# Copy Pipeline files over -ADD pipeline/ /usr/share/logstash/pipeline/ - -# Copy templates over -RUN mkdir /usr/share/logstash/templates -COPY templates/userale.json /usr/share/logstash/templates/userale.json - -EXPOSE 8100 - -CMD ["logstash"] \ No newline at end of file
diff --git a/docker/logstash/6.2.2/templates/userale.json b/docker/logstash/6.2.2/templates/userale.json deleted file mode 100644 index 5aa92d0..0000000 --- a/docker/logstash/6.2.2/templates/userale.json +++ /dev/null
@@ -1,143 +0,0 @@ -{ - "index_patterns": "userale", - "order": 1, - "settings": - { - "number_of_shards": 1, - "number_of_replicas": 0, - "index.refresh_interval": "5s", - "analysis": { - "analyzer": { - "my_analyzer": { - "tokenizer": "my_tokenizer" - } - }, - "tokenizer": { - "my_tokenizer": { - "type": "path_hierarchy" - } - } - } - }, - "mappings": - { - "doc": - { - "dynamic_templates": [ - { - "strings_as_keywords": { - "match_mapping_type": "string", - "mapping": { - "type": "keyword" - } - } - } - ], - "dynamic": "true", - "properties": - { - "userAction": - { - "type": "boolean" - }, - "clientTime": - { - "type": "date", - "format": "strict_date_optional_time||epoch_millis" - }, - "count": - { - "type": "integer" - }, - "targetChange": - { - "type": "boolean" - }, - "typeChange": - { - "type": "boolean" - }, - "details": - { - "properties": - { - "alt": - { - "type": "boolean" - }, - "clicks": - { - "type": "integer" - }, - "ctrl": - { - "type": "boolean" - }, - "meta": - { - "type": "boolean" - }, - "shift": - { - "type": "boolean" - }, - "window": - { - "type": "boolean" - }, - "x": - { - "type": "integer" - }, - "y": - { - "type": "integer" - }, - "z": - { - "type": "integer" - } - } - }, - "location": - { - "properties": - { - "x": - { - "type": "integer" - }, - "y": - { - "type": "integer" - } - } - }, - "major_ver": - { - "type": "integer" - }, - "minor_ver": - { - "type": "integer" - }, - "patch_ver": - { - "type": "integer" - }, - "tool_major_ver": - { - "type": "integer" - }, - "tool_minor_ver": - { - "type": "integer" - }, - "tool_patch_ver": - { - "type": "integer" - } - } - } - } -} \ No newline at end of file
diff --git a/docker/logstash/6.5.4/Dockerfile b/docker/logstash/6.5.4/Dockerfile deleted file mode 100644 index 876184c..0000000 --- a/docker/logstash/6.5.4/Dockerfile +++ /dev/null
@@ -1,31 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM docker.elastic.co/logstash/logstash-oss:6.5.4 -MAINTAINER Michelle Beard <msbeard@apache.org> - -# Ensure default logstash configuration is removed -RUN rm -f /usr/share/logstash/pipeline/logstash.conf - -# Copy Pipeline files over -ADD pipeline/ /usr/share/logstash/pipeline/ - -# Copy templates over -RUN mkdir /usr/share/logstash/templates -COPY templates/userale.json /usr/share/logstash/templates/userale.json - -EXPOSE 8100 - -CMD ["logstash"] \ No newline at end of file
diff --git a/docker/logstash/6.5.4/pipeline/logstash-userale.conf b/docker/logstash/6.5.4/pipeline/logstash-userale.conf deleted file mode 100644 index 8b4313f..0000000 --- a/docker/logstash/6.5.4/pipeline/logstash-userale.conf +++ /dev/null
@@ -1,52 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -input { - http { - codec => "json" - port => 8100 - response_headers => { - "Access-Control-Allow-Origin" => "*" - "Access-Control-Allow-Headers" => "Origin, X-Requested-With, Content-Type, Accept" - } - } -} - -## Add your filters / logstash plugins configuration here -filter { - mutate { - remove_field => [ "message", "@version", "headers"] - } - - grok { - match => [ "useraleVersion", "(?<major_ver>\d+).(?<minor_ver>\d+)(.(?<patch_ver>\d+))?" ] - match => [ "toolVersion", "(?<tool_major_ver>\d+).(?<tool_minor_ver>\d+)(.(?<tool_patch_ver>\d+))?" ] - } -} - -output { - # Output data to Elasticsearch instance - elasticsearch { - hosts => "${ELASTICSEARCH_URL}" - index => "userale" - manage_template => true - template_overwrite => true - template => "/usr/share/logstash/templates/userale.json" - template_name => "userale" - } - - # Debug - stdout { codec => rubydebug } -}
diff --git a/docker/logstash/6.5.4/templates/userale.json b/docker/logstash/6.5.4/templates/userale.json deleted file mode 100644 index 5aa92d0..0000000 --- a/docker/logstash/6.5.4/templates/userale.json +++ /dev/null
@@ -1,143 +0,0 @@ -{ - "index_patterns": "userale", - "order": 1, - "settings": - { - "number_of_shards": 1, - "number_of_replicas": 0, - "index.refresh_interval": "5s", - "analysis": { - "analyzer": { - "my_analyzer": { - "tokenizer": "my_tokenizer" - } - }, - "tokenizer": { - "my_tokenizer": { - "type": "path_hierarchy" - } - } - } - }, - "mappings": - { - "doc": - { - "dynamic_templates": [ - { - "strings_as_keywords": { - "match_mapping_type": "string", - "mapping": { - "type": "keyword" - } - } - } - ], - "dynamic": "true", - "properties": - { - "userAction": - { - "type": "boolean" - }, - "clientTime": - { - "type": "date", - "format": "strict_date_optional_time||epoch_millis" - }, - "count": - { - "type": "integer" - }, - "targetChange": - { - "type": "boolean" - }, - "typeChange": - { - "type": "boolean" - }, - "details": - { - "properties": - { - "alt": - { - "type": "boolean" - }, - "clicks": - { - "type": "integer" - }, - "ctrl": - { - "type": "boolean" - }, - "meta": - { - "type": "boolean" - }, - "shift": - { - "type": "boolean" - }, - "window": - { - "type": "boolean" - }, - "x": - { - "type": "integer" - }, - "y": - { - "type": "integer" - }, - "z": - { - "type": "integer" - } - } - }, - "location": - { - "properties": - { - "x": - { - "type": "integer" - }, - "y": - { - "type": "integer" - } - } - }, - "major_ver": - { - "type": "integer" - }, - "minor_ver": - { - "type": "integer" - }, - "patch_ver": - { - "type": "integer" - }, - "tool_major_ver": - { - "type": "integer" - }, - "tool_minor_ver": - { - "type": "integer" - }, - "tool_patch_ver": - { - "type": "integer" - } - } - } - } -} \ No newline at end of file
diff --git a/docker/logstash/6.6.2/Dockerfile b/docker/logstash/6.6.2/Dockerfile deleted file mode 100644 index c733fa5..0000000 --- a/docker/logstash/6.6.2/Dockerfile +++ /dev/null
@@ -1,31 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM docker.elastic.co/logstash/logstash-oss:6.6.2 -MAINTAINER Joshua Poore <poorejc@apache.org> - -# Ensure default logstash configuration is removed -RUN rm -f /usr/share/logstash/pipeline/logstash.conf - -# Copy Pipeline files over -ADD pipeline/ /usr/share/logstash/pipeline/ - -# Copy templates over -RUN mkdir /usr/share/logstash/templates -COPY templates/userale.json /usr/share/logstash/templates/userale.json - -EXPOSE 8100 - -CMD ["logstash"] \ No newline at end of file
diff --git a/docker/logstash/6.6.2/pipeline/logstash-userale.conf b/docker/logstash/6.6.2/pipeline/logstash-userale.conf deleted file mode 100644 index 8b4313f..0000000 --- a/docker/logstash/6.6.2/pipeline/logstash-userale.conf +++ /dev/null
@@ -1,52 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -input { - http { - codec => "json" - port => 8100 - response_headers => { - "Access-Control-Allow-Origin" => "*" - "Access-Control-Allow-Headers" => "Origin, X-Requested-With, Content-Type, Accept" - } - } -} - -## Add your filters / logstash plugins configuration here -filter { - mutate { - remove_field => [ "message", "@version", "headers"] - } - - grok { - match => [ "useraleVersion", "(?<major_ver>\d+).(?<minor_ver>\d+)(.(?<patch_ver>\d+))?" ] - match => [ "toolVersion", "(?<tool_major_ver>\d+).(?<tool_minor_ver>\d+)(.(?<tool_patch_ver>\d+))?" ] - } -} - -output { - # Output data to Elasticsearch instance - elasticsearch { - hosts => "${ELASTICSEARCH_URL}" - index => "userale" - manage_template => true - template_overwrite => true - template => "/usr/share/logstash/templates/userale.json" - template_name => "userale" - } - - # Debug - stdout { codec => rubydebug } -}
diff --git a/docker/logstash/6.6.2/templates/userale.json b/docker/logstash/6.6.2/templates/userale.json deleted file mode 100644 index c27b742..0000000 --- a/docker/logstash/6.6.2/templates/userale.json +++ /dev/null
@@ -1,153 +0,0 @@ -{ - "index_patterns": "userale", - "order": 1, - "settings": - { - "number_of_shards": 1, - "number_of_replicas": 0, - "index.refresh_interval": "5s", - "analysis": { - "analyzer": { - "my_analyzer": { - "tokenizer": "my_tokenizer" - } - }, - "tokenizer": { - "my_tokenizer": { - "type": "path_hierarchy" - } - } - } - }, - "mappings": - { - "doc": - { - "dynamic_templates": [ - { - "strings_as_keywords": { - "match_mapping_type": "string", - "mapping": { - "type": "keyword" - } - } - } - ], - "dynamic": "true", - "properties": - { - "userAction": - { - "type": "boolean" - }, - "clientTime": - { - "type": "date", - "format": "strict_date_optional_time||epoch_millis" - }, - "startTime": - { - "type": "date", - "format": "strict_date_optional_time||epoch_millis" - }, - "endTime": - { - "type": "date", - "format": "strict_date_optional_time||epoch_millis" - }, - "count": - { - "type": "integer" - }, - "targetChange": - { - "type": "boolean" - }, - "typeChange": - { - "type": "boolean" - }, - "details": - { - "properties": - { - "alt": - { - "type": "boolean" - }, - "clicks": - { - "type": "integer" - }, - "ctrl": - { - "type": "boolean" - }, - "meta": - { - "type": "boolean" - }, - "shift": - { - "type": "boolean" - }, - "window": - { - "type": "boolean" - }, - "x": - { - "type": "integer" - }, - "y": - { - "type": "integer" - }, - "z": - { - "type": "integer" - } - } - }, - "location": - { - "properties": - { - "x": - { - "type": "integer" - }, - "y": - { - "type": "integer" - } - } - }, - "major_ver": - { - "type": "integer" - }, - "minor_ver": - { - "type": "integer" - }, - "patch_ver": - { - "type": "integer" - }, - "tool_major_ver": - { - "type": "integer" - }, - "tool_minor_ver": - { - "type": "integer" - }, - "tool_patch_ver": - { - "type": "integer" - } - } - } - } -} \ No newline at end of file
diff --git a/docker/logstash/6.8.2/Dockerfile b/docker/logstash/6.8.2/Dockerfile deleted file mode 100644 index 6c13621..0000000 --- a/docker/logstash/6.8.2/Dockerfile +++ /dev/null
@@ -1,31 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM docker.elastic.co/logstash/logstash-oss:6.8.2 -MAINTAINER Joshua Poore <poorejc@apache.org> - -# Ensure default logstash configuration is removed -RUN rm -f /usr/share/logstash/pipeline/logstash.conf - -# Copy Pipeline files over -ADD pipeline/ /usr/share/logstash/pipeline/ - -# Copy templates over -RUN mkdir /usr/share/logstash/templates -COPY templates/userale.json /usr/share/logstash/templates/userale.json - -EXPOSE 8100 - -CMD ["logstash"] \ No newline at end of file
diff --git a/docker/logstash/6.8.2/pipeline/logstash-userale.conf b/docker/logstash/6.8.2/pipeline/logstash-userale.conf deleted file mode 100644 index 8b4313f..0000000 --- a/docker/logstash/6.8.2/pipeline/logstash-userale.conf +++ /dev/null
@@ -1,52 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -input { - http { - codec => "json" - port => 8100 - response_headers => { - "Access-Control-Allow-Origin" => "*" - "Access-Control-Allow-Headers" => "Origin, X-Requested-With, Content-Type, Accept" - } - } -} - -## Add your filters / logstash plugins configuration here -filter { - mutate { - remove_field => [ "message", "@version", "headers"] - } - - grok { - match => [ "useraleVersion", "(?<major_ver>\d+).(?<minor_ver>\d+)(.(?<patch_ver>\d+))?" ] - match => [ "toolVersion", "(?<tool_major_ver>\d+).(?<tool_minor_ver>\d+)(.(?<tool_patch_ver>\d+))?" ] - } -} - -output { - # Output data to Elasticsearch instance - elasticsearch { - hosts => "${ELASTICSEARCH_URL}" - index => "userale" - manage_template => true - template_overwrite => true - template => "/usr/share/logstash/templates/userale.json" - template_name => "userale" - } - - # Debug - stdout { codec => rubydebug } -}
diff --git a/docker/logstash/6.8.2/templates/userale.json b/docker/logstash/6.8.2/templates/userale.json deleted file mode 100644 index c27b742..0000000 --- a/docker/logstash/6.8.2/templates/userale.json +++ /dev/null
@@ -1,153 +0,0 @@ -{ - "index_patterns": "userale", - "order": 1, - "settings": - { - "number_of_shards": 1, - "number_of_replicas": 0, - "index.refresh_interval": "5s", - "analysis": { - "analyzer": { - "my_analyzer": { - "tokenizer": "my_tokenizer" - } - }, - "tokenizer": { - "my_tokenizer": { - "type": "path_hierarchy" - } - } - } - }, - "mappings": - { - "doc": - { - "dynamic_templates": [ - { - "strings_as_keywords": { - "match_mapping_type": "string", - "mapping": { - "type": "keyword" - } - } - } - ], - "dynamic": "true", - "properties": - { - "userAction": - { - "type": "boolean" - }, - "clientTime": - { - "type": "date", - "format": "strict_date_optional_time||epoch_millis" - }, - "startTime": - { - "type": "date", - "format": "strict_date_optional_time||epoch_millis" - }, - "endTime": - { - "type": "date", - "format": "strict_date_optional_time||epoch_millis" - }, - "count": - { - "type": "integer" - }, - "targetChange": - { - "type": "boolean" - }, - "typeChange": - { - "type": "boolean" - }, - "details": - { - "properties": - { - "alt": - { - "type": "boolean" - }, - "clicks": - { - "type": "integer" - }, - "ctrl": - { - "type": "boolean" - }, - "meta": - { - "type": "boolean" - }, - "shift": - { - "type": "boolean" - }, - "window": - { - "type": "boolean" - }, - "x": - { - "type": "integer" - }, - "y": - { - "type": "integer" - }, - "z": - { - "type": "integer" - } - } - }, - "location": - { - "properties": - { - "x": - { - "type": "integer" - }, - "y": - { - "type": "integer" - } - } - }, - "major_ver": - { - "type": "integer" - }, - "minor_ver": - { - "type": "integer" - }, - "patch_ver": - { - "type": "integer" - }, - "tool_major_ver": - { - "type": "integer" - }, - "tool_minor_ver": - { - "type": "integer" - }, - "tool_patch_ver": - { - "type": "integer" - } - } - } - } -} \ No newline at end of file
diff --git a/docker/logstash/8.11.3/Dockerfile b/docker/logstash/8.11.3/Dockerfile deleted file mode 100644 index c5ccecc..0000000 --- a/docker/logstash/8.11.3/Dockerfile +++ /dev/null
@@ -1,31 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM docker.elastic.co/logstash/logstash:8.11.3 -MAINTAINER Joshua Poore <poorejc@apache.org> - -# Ensure default logstash configuration is removed -RUN rm -f /usr/share/logstash/pipeline/logstash.conf - -# Copy Pipeline files over -ADD pipeline/ /usr/share/logstash/pipeline/ - -# Copy templates over -RUN mkdir /usr/share/logstash/templates -COPY templates/userale.json /usr/share/logstash/templates/userale.json - -EXPOSE 8100 - -CMD ["logstash"] \ No newline at end of file
diff --git a/docker/logstash/8.11.3/pipeline/logstash-userale.conf b/docker/logstash/8.11.3/pipeline/logstash-userale.conf deleted file mode 100644 index 8b4313f..0000000 --- a/docker/logstash/8.11.3/pipeline/logstash-userale.conf +++ /dev/null
@@ -1,52 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -input { - http { - codec => "json" - port => 8100 - response_headers => { - "Access-Control-Allow-Origin" => "*" - "Access-Control-Allow-Headers" => "Origin, X-Requested-With, Content-Type, Accept" - } - } -} - -## Add your filters / logstash plugins configuration here -filter { - mutate { - remove_field => [ "message", "@version", "headers"] - } - - grok { - match => [ "useraleVersion", "(?<major_ver>\d+).(?<minor_ver>\d+)(.(?<patch_ver>\d+))?" ] - match => [ "toolVersion", "(?<tool_major_ver>\d+).(?<tool_minor_ver>\d+)(.(?<tool_patch_ver>\d+))?" ] - } -} - -output { - # Output data to Elasticsearch instance - elasticsearch { - hosts => "${ELASTICSEARCH_URL}" - index => "userale" - manage_template => true - template_overwrite => true - template => "/usr/share/logstash/templates/userale.json" - template_name => "userale" - } - - # Debug - stdout { codec => rubydebug } -}
diff --git a/docker/logstash/Dockerfile b/docker/logstash/Dockerfile new file mode 100644 index 0000000..bde5808 --- /dev/null +++ b/docker/logstash/Dockerfile
@@ -0,0 +1,7 @@ +ARG ELASTIC_VERSION + +# https://www.docker.elastic.co/ +FROM docker.elastic.co/logstash/logstash:${ELASTIC_VERSION} + +# Add your logstash plugins setup here +# Example: RUN logstash-plugin install logstash-filter-json
diff --git a/docker/logstash/config/logstash.yml b/docker/logstash/config/logstash.yml new file mode 100644 index 0000000..a81b89b --- /dev/null +++ b/docker/logstash/config/logstash.yml
@@ -0,0 +1,7 @@ +--- +## Default Logstash configuration from Logstash base image. +## https://github.com/elastic/logstash/blob/main/docker/data/logstash/config/logstash-full.yml +# +http.host: 0.0.0.0 + +node.name: logstash
diff --git a/docker/logstash/6.2.2/pipeline/logstash-userale.conf b/docker/logstash/pipeline/logstash.conf similarity index 92% rename from docker/logstash/6.2.2/pipeline/logstash-userale.conf rename to docker/logstash/pipeline/logstash.conf index 8b4313f..518d0ca 100644 --- a/docker/logstash/6.2.2/pipeline/logstash-userale.conf +++ b/docker/logstash/pipeline/logstash.conf
@@ -16,7 +16,7 @@ input { http { codec => "json" - port => 8100 + port => 50000 response_headers => { "Access-Control-Allow-Origin" => "*" "Access-Control-Allow-Headers" => "Origin, X-Requested-With, Content-Type, Accept" @@ -39,14 +39,16 @@ output { # Output data to Elasticsearch instance elasticsearch { - hosts => "${ELASTICSEARCH_URL}" + hosts => "elasticsearch:9200" index => "userale" manage_template => true template_overwrite => true template => "/usr/share/logstash/templates/userale.json" template_name => "userale" + user => "logstash_internal" + password => "${LOGSTASH_INTERNAL_PASSWORD}" } # Debug stdout { codec => rubydebug } -} +} \ No newline at end of file
diff --git a/docker/logstash/8.11.3/templates/userale.json b/docker/logstash/templates/userale.json similarity index 100% rename from docker/logstash/8.11.3/templates/userale.json rename to docker/logstash/templates/userale.json
diff --git a/docker/setup/.dockerignore b/docker/setup/.dockerignore new file mode 100644 index 0000000..c5dd1c8 --- /dev/null +++ b/docker/setup/.dockerignore
@@ -0,0 +1,9 @@ +# Ignore Docker build files +Dockerfile +.dockerignore + +# Ignore OS artifacts +**/.DS_Store + +# Ignore Git files +.gitignore
diff --git a/docker/setup/Dockerfile b/docker/setup/Dockerfile new file mode 100644 index 0000000..1cb7538 --- /dev/null +++ b/docker/setup/Dockerfile
@@ -0,0 +1,6 @@ +ARG ELASTIC_VERSION + +# https://www.docker.elastic.co/ +FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION} + +ENTRYPOINT ["/entrypoint.sh"]
diff --git a/docker/setup/entrypoint.sh b/docker/setup/entrypoint.sh new file mode 100755 index 0000000..ac79321 --- /dev/null +++ b/docker/setup/entrypoint.sh
@@ -0,0 +1,119 @@ +#!/usr/bin/env bash + +set -eu +set -o pipefail + +source "${BASH_SOURCE[0]%/*}"/lib.sh + + +# -------------------------------------------------------- +# Users declarations + +declare -A users_passwords +users_passwords=( + [logstash_internal]="${LOGSTASH_INTERNAL_PASSWORD:-}" + [kibana_system]="${KIBANA_SYSTEM_PASSWORD:-}" + [metricbeat_internal]="${METRICBEAT_INTERNAL_PASSWORD:-}" + [filebeat_internal]="${FILEBEAT_INTERNAL_PASSWORD:-}" + [heartbeat_internal]="${HEARTBEAT_INTERNAL_PASSWORD:-}" + [monitoring_internal]="${MONITORING_INTERNAL_PASSWORD:-}" + [beats_system]="${BEATS_SYSTEM_PASSWORD=:-}" +) + +declare -A users_roles +users_roles=( + [logstash_internal]='logstash_writer' + [metricbeat_internal]='metricbeat_writer' + [filebeat_internal]='filebeat_writer' + [heartbeat_internal]='heartbeat_writer' + [monitoring_internal]='remote_monitoring_collector' +) + +# -------------------------------------------------------- +# Roles declarations + +declare -A roles_files +roles_files=( + [logstash_writer]='logstash_writer.json' + [metricbeat_writer]='metricbeat_writer.json' + [filebeat_writer]='filebeat_writer.json' + [heartbeat_writer]='heartbeat_writer.json' +) + +# -------------------------------------------------------- + + +log 'Waiting for availability of Elasticsearch. This can take several minutes.' + +declare -i exit_code=0 +wait_for_elasticsearch || exit_code=$? + +if ((exit_code)); then + case $exit_code in + 6) + suberr 'Could not resolve host. Is Elasticsearch running?' + ;; + 7) + suberr 'Failed to connect to host. Is Elasticsearch healthy?' + ;; + 28) + suberr 'Timeout connecting to host. Is Elasticsearch healthy?' + ;; + *) + suberr "Connection to Elasticsearch failed. Exit code: ${exit_code}" + ;; + esac + + exit $exit_code +fi + +sublog 'Elasticsearch is running' + +log 'Waiting for initialization of built-in users' + +wait_for_builtin_users || exit_code=$? + +if ((exit_code)); then + suberr 'Timed out waiting for condition' + exit $exit_code +fi + +sublog 'Built-in users were initialized' + +for role in "${!roles_files[@]}"; do + log "Role '$role'" + + declare body_file + body_file="${BASH_SOURCE[0]%/*}/roles/${roles_files[$role]:-}" + if [[ ! -f "${body_file:-}" ]]; then + sublog "No role body found at '${body_file}', skipping" + continue + fi + + sublog 'Creating/updating' + ensure_role "$role" "$(<"${body_file}")" +done + +for user in "${!users_passwords[@]}"; do + log "User '$user'" + if [[ -z "${users_passwords[$user]:-}" ]]; then + sublog 'No password defined, skipping' + continue + fi + + declare -i user_exists=0 + user_exists="$(check_user_exists "$user")" + + if ((user_exists)); then + sublog 'User exists, setting password' + set_user_password "$user" "${users_passwords[$user]}" + else + if [[ -z "${users_roles[$user]:-}" ]]; then + suberr ' No role defined, skipping creation' + continue + fi + + sublog 'User does not exist, creating' + create_user "$user" "${users_passwords[$user]}" "${users_roles[$user]}" + fi +done
diff --git a/docker/setup/lib.sh b/docker/setup/lib.sh new file mode 100644 index 0000000..7e635c6 --- /dev/null +++ b/docker/setup/lib.sh
@@ -0,0 +1,240 @@ +#!/usr/bin/env bash + +# Log a message. +function log { + echo "[+] $1" +} + +# Log a message at a sub-level. +function sublog { + echo " ⠿ $1" +} + +# Log an error. +function err { + echo "[x] $1" >&2 +} + +# Log an error at a sub-level. +function suberr { + echo " ⠍ $1" >&2 +} + +# Poll the 'elasticsearch' service until it responds with HTTP code 200. +function wait_for_elasticsearch { + local elasticsearch_host="${ELASTICSEARCH_HOST:-elasticsearch}" + + local -a args=( '-s' '-D-' '-m15' '-w' '%{http_code}' "http://${elasticsearch_host}:9200/" ) + + if [[ -n "${ELASTIC_PASSWORD:-}" ]]; then + args+=( '-u' "elastic:${ELASTIC_PASSWORD}" ) + fi + + local -i result=1 + local output + + # retry for max 300s (60*5s) + for _ in $(seq 1 60); do + local -i exit_code=0 + output="$(curl "${args[@]}")" || exit_code=$? + + if ((exit_code)); then + result=$exit_code + fi + + if [[ "${output: -3}" -eq 200 ]]; then + result=0 + break + fi + + sleep 5 + done + + if ((result)) && [[ "${output: -3}" -ne 000 ]]; then + echo -e "\n${output::-3}" + fi + + return $result +} + +# Poll the Elasticsearch users API until it returns users. +function wait_for_builtin_users { + local elasticsearch_host="${ELASTICSEARCH_HOST:-elasticsearch}" + + local -a args=( '-s' '-D-' '-m15' "http://${elasticsearch_host}:9200/_security/user?pretty" ) + + if [[ -n "${ELASTIC_PASSWORD:-}" ]]; then + args+=( '-u' "elastic:${ELASTIC_PASSWORD}" ) + fi + + local -i result=1 + + local line + local -i exit_code + local -i num_users + + # retry for max 30s (30*1s) + for _ in $(seq 1 30); do + num_users=0 + + # read exits with a non-zero code if the last read input doesn't end + # with a newline character. The printf without newline that follows the + # curl command ensures that the final input not only contains curl's + # exit code, but causes read to fail so we can capture the return value. + # Ref. https://unix.stackexchange.com/a/176703/152409 + while IFS= read -r line || ! exit_code="$line"; do + if [[ "$line" =~ _reserved.+true ]]; then + (( num_users++ )) + fi + done < <(curl "${args[@]}"; printf '%s' "$?") + + if ((exit_code)); then + result=$exit_code + fi + + # we expect more than just the 'elastic' user in the result + if (( num_users > 1 )); then + result=0 + break + fi + + sleep 1 + done + + return $result +} + +# Verify that the given Elasticsearch user exists. +function check_user_exists { + local username=$1 + + local elasticsearch_host="${ELASTICSEARCH_HOST:-elasticsearch}" + + local -a args=( '-s' '-D-' '-m15' '-w' '%{http_code}' + "http://${elasticsearch_host}:9200/_security/user/${username}" + ) + + if [[ -n "${ELASTIC_PASSWORD:-}" ]]; then + args+=( '-u' "elastic:${ELASTIC_PASSWORD}" ) + fi + + local -i result=1 + local -i exists=0 + local output + + output="$(curl "${args[@]}")" + if [[ "${output: -3}" -eq 200 || "${output: -3}" -eq 404 ]]; then + result=0 + fi + if [[ "${output: -3}" -eq 200 ]]; then + exists=1 + fi + + if ((result)); then + echo -e "\n${output::-3}" + else + echo "$exists" + fi + + return $result +} + +# Set password of a given Elasticsearch user. +function set_user_password { + local username=$1 + local password=$2 + + local elasticsearch_host="${ELASTICSEARCH_HOST:-elasticsearch}" + + local -a args=( '-s' '-D-' '-m15' '-w' '%{http_code}' + "http://${elasticsearch_host}:9200/_security/user/${username}/_password" + '-X' 'POST' + '-H' 'Content-Type: application/json' + '-d' "{\"password\" : \"${password}\"}" + ) + + if [[ -n "${ELASTIC_PASSWORD:-}" ]]; then + args+=( '-u' "elastic:${ELASTIC_PASSWORD}" ) + fi + + local -i result=1 + local output + + output="$(curl "${args[@]}")" + if [[ "${output: -3}" -eq 200 ]]; then + result=0 + fi + + if ((result)); then + echo -e "\n${output::-3}\n" + fi + + return $result +} + +# Create the given Elasticsearch user. +function create_user { + local username=$1 + local password=$2 + local role=$3 + + local elasticsearch_host="${ELASTICSEARCH_HOST:-elasticsearch}" + + local -a args=( '-s' '-D-' '-m15' '-w' '%{http_code}' + "http://${elasticsearch_host}:9200/_security/user/${username}" + '-X' 'POST' + '-H' 'Content-Type: application/json' + '-d' "{\"password\":\"${password}\",\"roles\":[\"${role}\"]}" + ) + + if [[ -n "${ELASTIC_PASSWORD:-}" ]]; then + args+=( '-u' "elastic:${ELASTIC_PASSWORD}" ) + fi + + local -i result=1 + local output + + output="$(curl "${args[@]}")" + if [[ "${output: -3}" -eq 200 ]]; then + result=0 + fi + + if ((result)); then + echo -e "\n${output::-3}\n" + fi + + return $result +} + +# Ensure that the given Elasticsearch role is up-to-date, create it if required. +function ensure_role { + local name=$1 + local body=$2 + + local elasticsearch_host="${ELASTICSEARCH_HOST:-elasticsearch}" + + local -a args=( '-s' '-D-' '-m15' '-w' '%{http_code}' + "http://${elasticsearch_host}:9200/_security/role/${name}" + '-X' 'POST' + '-H' 'Content-Type: application/json' + '-d' "$body" + ) + + if [[ -n "${ELASTIC_PASSWORD:-}" ]]; then + args+=( '-u' "elastic:${ELASTIC_PASSWORD}" ) + fi + + local -i result=1 + local output + + output="$(curl "${args[@]}")" + if [[ "${output: -3}" -eq 200 ]]; then + result=0 + fi + + if ((result)); then + echo -e "\n${output::-3}\n" + fi + + return $result +}
diff --git a/docker/setup/roles/filebeat_writer.json b/docker/setup/roles/filebeat_writer.json new file mode 100644 index 0000000..b24b873 --- /dev/null +++ b/docker/setup/roles/filebeat_writer.json
@@ -0,0 +1,20 @@ +{ + "cluster": [ + "manage_ilm", + "manage_index_templates", + "manage_ingest_pipelines", + "monitor", + "read_pipeline" + ], + "indices": [ + { + "names": [ + "filebeat-*" + ], + "privileges": [ + "create_doc", + "manage" + ] + } + ] +}
diff --git a/docker/setup/roles/heartbeat_writer.json b/docker/setup/roles/heartbeat_writer.json new file mode 100644 index 0000000..9f64fa8 --- /dev/null +++ b/docker/setup/roles/heartbeat_writer.json
@@ -0,0 +1,18 @@ +{ + "cluster": [ + "manage_ilm", + "manage_index_templates", + "monitor" + ], + "indices": [ + { + "names": [ + "heartbeat-*" + ], + "privileges": [ + "create_doc", + "manage" + ] + } + ] +}
diff --git a/docker/setup/roles/logstash_writer.json b/docker/setup/roles/logstash_writer.json new file mode 100644 index 0000000..1e744f6 --- /dev/null +++ b/docker/setup/roles/logstash_writer.json
@@ -0,0 +1,34 @@ +{ + "cluster": [ + "manage_index_templates", + "monitor", + "manage_ilm" + ], + "indices": [ + { + "names": [ + "logs-generic-default", + "logstash-*", + "ecs-logstash-*", + "*" + ], + "privileges": [ + "write", + "create", + "create_index", + "manage", + "manage_ilm" + ] + }, + { + "names": [ + "logstash", + "ecs-logstash" + ], + "privileges": [ + "write", + "manage" + ] + } + ] +}
diff --git a/docker/setup/roles/metricbeat_writer.json b/docker/setup/roles/metricbeat_writer.json new file mode 100644 index 0000000..279308c --- /dev/null +++ b/docker/setup/roles/metricbeat_writer.json
@@ -0,0 +1,19 @@ +{ + "cluster": [ + "manage_ilm", + "manage_index_templates", + "monitor" + ], + "indices": [ + { + "names": [ + ".monitoring-*-mb", + "metricbeat-*" + ], + "privileges": [ + "create_doc", + "manage" + ] + } + ] +}
diff --git a/docker/site/Dockerfile b/docker/site/Dockerfile index c53d3b9..678e0a4 100644 --- a/docker/site/Dockerfile +++ b/docker/site/Dockerfile
@@ -14,7 +14,6 @@ # limitations under the License. FROM ruby -MAINTAINER Michelle Beard <msbeard@apache.org> # Install system wide dependencies RUN apt-get -yqq update && apt-get -yqq install \ @@ -30,13 +29,13 @@ git # Clone Apache Flagon Site -RUN git clone -b master https://github.com/apache/incubator-flagon.git -WORKDIR /usr/src/incubator-flagon/site/_site +RUN git clone -b master https://github.com/apache/flagon.git +WORKDIR /usr/src/flagon/site/_site # Update data-url to send to logstash -RUN sed -i 's/data-url=\"\"/data-url="http:\/\/localhost:8100"/' index.html +RUN sed -i 's/data-url=\"\"/data-url="http:\/\/localhost:50000"/' index.html RUN sed -i 's/noSend\: true/noSend\: false/' index.html # Install system wide dependencies RUN apt-get -yqq update && apt-get -yqq install \ - python-is-python3 + python-is-python3 \ No newline at end of file
diff --git a/docker/startup/Dockerfile b/docker/startup/Dockerfile deleted file mode 100644 index 3d82524..0000000 --- a/docker/startup/Dockerfile +++ /dev/null
@@ -1,31 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM ubuntu:latest -MAINTAINER Joshua Poore <poorejc@apache.org> - -RUN apt-get update && apt-get install -y wget curl && apt-get clean - -ENV DOCKERIZE_VERSION v0.6.1 - -RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz - -RUN tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz - -# Copy Files Over -COPY ./entrypoint.sh /opt/entrypoint.sh - -# Make executable -RUN chmod +x /opt/*.sh
diff --git a/docker/startup/entrypoint.sh b/docker/startup/entrypoint.sh deleted file mode 100644 index c33a63b..0000000 --- a/docker/startup/entrypoint.sh +++ /dev/null
@@ -1,20 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -#!/bin/bash - -# Wait for the Elasticsearch container to be ready before starting Kibana. -echo "Stalling for Elasticsearch" -dockerize -wait http://loadbalancer:9200
diff --git a/docker/tap/Dockerfile b/docker/tap/Dockerfile deleted file mode 100644 index 0089f95..0000000 --- a/docker/tap/Dockerfile +++ /dev/null
@@ -1,67 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -FROM python:3.4 -MAINTAINER Michelle Beard <msbeard@apache.org> - -# Install system wide dependencies -RUN apt-get -yqq update && apt-get -yqq install \ - curl \ - sudo - -# Install NodeJS 4.x -#RUN curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash - -RUN curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - - -RUN sudo -E apt-get -yqq install \ - nodejs \ - build-essential - -# Set the work directory -RUN mkdir -p /usr/src -WORKDIR /usr/src - -# Install gulp -RUN npm install -g bower gulp - -# Install git -RUN sudo -E apt-get -yqq install \ - git - -# Clone TAP -RUN git clone -b ryan-sankey https://github.com/apache/incubator-senssoft-tap.git app -WORKDIR /usr/src/app - -# Install packages -RUN npm install - -# Install TAP requirements -RUN pip install -r requirements.txt - -# Add application files -RUN cp secrets/secret.py tap/settings -#ADD secret.py /usr/src/app/tap/settings -#ADD secrets/neon_counts.js /usr/src/app/public -#ADD secrets/neon_graph.js /usr/src/app/public - -# Add startup script -#ADD wait-for-postgres.sh /usr/src/app -RUN chmod +x /usr/src/app/wait-for-postgres.sh - -# Startup Application -RUN gulp build - -# Export port -EXPOSE 8010
diff --git a/docker/tap/README.md b/docker/tap/README.md deleted file mode 100644 index eaf43b2..0000000 --- a/docker/tap/README.md +++ /dev/null
@@ -1,2 +0,0 @@ -Copy neon_*.json files here until we integrate w/Distill -
diff --git a/docker/tap/neon_counts.js b/docker/tap/neon_counts.js deleted file mode 100644 index ff5cadf..0000000 --- a/docker/tap/neon_counts.js +++ /dev/null
@@ -1,2 +0,0 @@ -var neon_counts = [{"intake_data": {"demographics": {"Gender": 2.0, "Age": 34.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 9.0, "Education in IA (ind_priv)": 2.0, "Secondary concentration, free": null, "Tertiary concentration, free": null, "Education in IA (gov_mil)": 2.0, "Primary concentration, free": "Architecture", "Education Concentration": "Civil Engineering"}, "employment": {"Current job free": "The Lovecraft", "Industry experience as an analyst": null, "Current industry free": "Manufacturing/Design", "Current title free": "Owner", "Other experience Free": null}, "exam_scores": {"Experiential inductive cognitive style": 3.5, "Need for cognition": 5.277777778, "Need for closure": 2.866666667, "Rational deductive cognitive style": 5.9, "Subjective Numeracy Scale": 3.0, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 1.333333333, "OT1 Score": 2, "Time to Complete OT1": 844, "Time to Complete OT2": 1012, "Combined OT Scores": 4.0, "UX Engagement Composite": 3.9375, "UX OT 2 Cognitive Load Composite": 1.0, "UX OT Enjoyment Composite": 5.0, "Total Time to Complete All Tasks": 1856, "OT2 Confidence": 11.0, "UX OT1 Bedford Workload Composite": 5.0, "UX OT2 Engagement Composite": 4.0, "UX OT1 Engagement Composite": 3.875, "UX Bedford Workload (Mental Effort)": 3.5, "Ave OT Confidence": 10.25, "UX OT 1 Cognitive Load Composite": 1.9, "UX OT Cognitive Load Composite": 1.45, "UX Bedford Workload (Rel Skill Level)": 3.5, "OT1 Confidence": 9.5, "UX Bedford Workload Composite": 3.1666666664999998, "OT2 Score": 2.0, "UX Bedford Workload (Difficulty)": 2.5}, "log_data": {"OT1": {"total_counts": 207, "logs": {"count": [3, 20, 0, 0, 1, 2, 2, 3, 4, 2, 0, 0, 0, 0, 2, 3, 13, 0, 0, 0, 1, 1, 2, 1, 1, 1, 1, 8, 4, 0, 0, 52, 28, 0, 2, 0, 1, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 9, 11, 0, 0, 0, 5, 7, 3, 2, 9], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "0846bcbb7a349347961f6aa8824e2f_1530"}, "OT2": {"total_counts": 366, "logs": {"count": [2, 22, 0, 0, 0, 2, 1, 3, 5, 2, 2, 2, 0, 0, 3, 16, 54, 0, 0, 0, 13, 7, 0, 0, 0, 13, 0, 4, 3, 1, 8, 36, 24, 0, 7, 0, 0, 5, 0, 0, 0, 9, 11, 1, 0, 0, 0, 3, 54, 22, 0, 0, 0, 5, 5, 3, 0, 18], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "0846bcbb7a349347961f6aa8824e2f_1531"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "0846bcbb7a349347961f6aa8824e2f"}, {"intake_data": {"demographics": {"Gender": 1.0, "Age": 28.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 9.0, "Education in IA (ind_priv)": null, "Secondary concentration, free": "Environmental Sciences", "Tertiary concentration, free": null, "Education in IA (gov_mil)": null, "Primary concentration, free": "Social Sciences"}, "employment": {"Industry experience as an analyst": null, "Decscription of career, occupation": "Not Applicable", "Current industry free": "Manufacturing", "Other experience Free": null, "Current job free": "Full time paid employment", "Current title free": "Human Resource Supervisor"}, "exam_scores": {"Experiential inductive cognitive style": 5.2, "Need for cognition": 6.222222222, "Need for closure": 3.733333333, "Rational deductive cognitive style": 6.333333333, "Subjective Numeracy Scale": 4.4, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 7.0, "OT1 Score": 4, "Time to Complete OT1": 928, "Time to Complete OT2": 543, "Combined OT Scores": 7.0, "UX Engagement Composite": 3.625, "UX OT 2 Cognitive Load Composite": 2.96, "UX OT Enjoyment Composite": 5.0, "Total Time to Complete All Tasks": 1471, "OT2 Confidence": 8.4, "UX OT1 Bedford Workload Composite": null, "UX OT2 Engagement Composite": 3.625, "UX OT1 Engagement Composite": null, "UX Bedford Workload (Mental Effort)": 8.0, "Ave OT Confidence": 7.9500000000000002, "UX OT 1 Cognitive Load Composite": null, "UX OT Cognitive Load Composite": 2.96, "UX Bedford Workload (Rel Skill Level)": 6.0, "OT1 Confidence": 7.5, "UX Bedford Workload Composite": 7.0, "OT2 Score": 3.0, "UX Bedford Workload (Difficulty)": 7.0}, "log_data": {"OT1": {"total_counts": 163, "logs": {"count": [2, 18, 0, 0, 0, 5, 1, 2, 2, 5, 6, 3, 0, 0, 0, 8, 19, 0, 0, 0, 6, 1, 0, 0, 1, 6, 1, 0, 1, 0, 0, 11, 7, 0, 2, 0, 0, 0, 1, 0, 0, 2, 5, 0, 0, 0, 0, 0, 26, 6, 0, 0, 0, 5, 5, 1, 0, 5], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "0ce09368198ffe11adf71b8daab4c4_1784"}, "OT2": {"total_counts": 108, "logs": {"count": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 12, 16, 1, 0, 1, 8, 1, 1, 0, 1, 9, 0, 2, 2, 0, 0, 8, 4, 0, 4, 0, 1, 2, 1, 0, 0, 5, 3, 0, 0, 0, 0, 0, 13, 5, 0, 0, 0, 2, 2, 1, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "0ce09368198ffe11adf71b8daab4c4_1785"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "0ce09368198ffe11adf71b8daab4c4"}, {"intake_data": {"demographics": {"Gender": 1.0, "Age": 27.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 5.0, "Education in IA (ind_priv)": null, "Secondary concentration, free": "Biology", "Tertiary concentration, free": "Art and Design", "Education in IA (gov_mil)": null, "Primary concentration, free": "Nursing"}, "employment": {"Industry experience as an analyst": null, "Decscription of career, occupation": "Not Applicable", "Current industry free": "Healthcare", "Other experience Free": null, "Current job free": "Nurse", "Current title free": "Nurse"}, "exam_scores": {"Experiential inductive cognitive style": 4.1, "Need for cognition": 4.222222222, "Need for closure": 4.266666667, "Rational deductive cognitive style": 3.9, "Subjective Numeracy Scale": 2.2, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 5.0, "OT1 Score": 2, "Time to Complete OT1": 338, "Time to Complete OT2": 322, "Combined OT Scores": 4.0, "UX Engagement Composite": 4.125, "UX OT 2 Cognitive Load Composite": 1.0, "UX OT Enjoyment Composite": 4.5, "Total Time to Complete All Tasks": 660, "OT2 Confidence": 8.2, "UX OT1 Bedford Workload Composite": 3.666666667, "UX OT2 Engagement Composite": 4.25, "UX OT1 Engagement Composite": 4.0, "UX Bedford Workload (Mental Effort)": 5.0, "Ave OT Confidence": 8.4749999999999996, "UX OT 1 Cognitive Load Composite": 1.55, "UX OT Cognitive Load Composite": 1.2749999999999999, "UX Bedford Workload (Rel Skill Level)": 5.0, "OT1 Confidence": 8.75, "UX Bedford Workload Composite": 4.3333333334999997, "OT2 Score": 2.0, "UX Bedford Workload (Difficulty)": 3.0}, "log_data": {"OT1": {"total_counts": 41, "logs": {"count": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 4, 4, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 9, 5, 0, 0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 3, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "0e2bf8b0d73b3c1714d34286df21bd_1660"}, "OT2": {"total_counts": 22, "logs": {"count": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 2, 0, 0, 2, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 0, 1, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "0e2bf8b0d73b3c1714d34286df21bd_1661"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "0e2bf8b0d73b3c1714d34286df21bd"}, {"intake_data": {"demographics": {"Gender": 1.0, "Age": 50.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 9.0, "Education in IA (ind_priv)": null, "Secondary concentration, free": "business administration", "Tertiary concentration, free": null, "Education in IA (gov_mil)": null, "Primary concentration, free": "health services administration"}, "employment": {"Industry experience as an analyst": null, "Decscription of career, occupation": "Not Applicable", "Current industry free": "health care", "Other experience Free": null, "Current job free": "hospital", "Current title free": "manager"}, "exam_scores": {"Experiential inductive cognitive style": 4.9, "Need for cognition": 4.5, "Need for closure": 4.4, "Rational deductive cognitive style": 5.5, "Subjective Numeracy Scale": 4.0, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 6.666666667, "OT1 Score": 1, "Time to Complete OT1": 274, "Time to Complete OT2": 457, "Combined OT Scores": 2.0, "UX Engagement Composite": 3.5, "UX OT 2 Cognitive Load Composite": 3.04, "UX OT Enjoyment Composite": 4.0, "Total Time to Complete All Tasks": 731, "OT2 Confidence": 6.4, "UX OT1 Bedford Workload Composite": 6.666666667, "UX OT2 Engagement Composite": 3.5, "UX OT1 Engagement Composite": 3.5, "UX Bedford Workload (Mental Effort)": 7.5, "Ave OT Confidence": 6.5750000000000002, "UX OT 1 Cognitive Load Composite": 2.85, "UX OT Cognitive Load Composite": 2.9450000000000003, "UX Bedford Workload (Rel Skill Level)": 6.0, "OT1 Confidence": 6.75, "UX Bedford Workload Composite": 6.6666666670000003, "OT2 Score": 1.0, "UX Bedford Workload (Difficulty)": 6.5}, "log_data": {"OT1": {"total_counts": 14, "logs": {"count": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 1, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "1baa3b7cf49d0f58c6f4535d69cb95_1917"}, "OT2": {"total_counts": 23, "logs": {"count": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 1, 1, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "1baa3b7cf49d0f58c6f4535d69cb95_1916"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "1baa3b7cf49d0f58c6f4535d69cb95"}, {"intake_data": {"demographics": {"Gender": 2.0, "Age": 21.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 7.0, "Education in IA (ind_priv)": 1.0, "Secondary concentration, free": null, "Tertiary concentration, free": null, "Education in IA (gov_mil)": 1.0, "Primary concentration, free": "Computer Science in Engineering", "Education Concentration": "Computer Sciences"}, "employment": {"Current job free": null, "Industry experience as an analyst": 7.0, "Current industry free": null, "Current title free": null, "Other experience Free": null}, "exam_scores": {"Experiential inductive cognitive style": 3.4, "Need for cognition": 6.333333333, "Need for closure": 1.6, "Rational deductive cognitive style": 7.0, "Subjective Numeracy Scale": 5.0, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 1.6666666669999999, "OT1 Score": 4, "Time to Complete OT1": 1209, "Time to Complete OT2": 1404, "Combined OT Scores": 5.0, "UX Engagement Composite": 2.75, "UX OT 2 Cognitive Load Composite": 1.72, "UX OT Enjoyment Composite": 3.5, "Total Time to Complete All Tasks": 2613, "OT2 Confidence": 10.4, "UX OT1 Bedford Workload Composite": 4.333333333, "UX OT2 Engagement Composite": 3.75, "UX OT1 Engagement Composite": 1.75, "UX Bedford Workload (Mental Effort)": 3.5, "Ave OT Confidence": 10.074999999999999, "UX OT 1 Cognitive Load Composite": 3.25, "UX OT Cognitive Load Composite": 2.4849999999999999, "UX Bedford Workload (Rel Skill Level)": 2.0, "OT1 Confidence": 9.75, "UX Bedford Workload Composite": 3.0, "OT2 Score": 1.0, "UX Bedford Workload (Difficulty)": 3.5}, "log_data": {"OT1": {"total_counts": 203, "logs": {"count": [3, 19, 0, 0, 0, 2, 2, 2, 2, 2, 0, 0, 0, 0, 0, 15, 17, 0, 0, 0, 4, 2, 1, 0, 1, 4, 0, 2, 1, 0, 0, 19, 14, 11, 3, 0, 0, 2, 2, 0, 0, 3, 2, 0, 0, 2, 0, 0, 19, 5, 0, 0, 0, 18, 18, 1, 0, 5], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "1bd6128dcaf7c84ec0c242bebfaa0f_1117"}, "OT2": {"total_counts": 179, "logs": {"count": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 5, 15, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 19, 12, 0, 0, 48, 18, 0, 11, 0, 6, 4, 0, 0, 0, 11, 1, 0, 0, 4, 0, 0, 19, 1, 0, 0, 0, 1, 1, 1, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "1bd6128dcaf7c84ec0c242bebfaa0f_1116"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "1bd6128dcaf7c84ec0c242bebfaa0f"}, {"intake_data": {"demographics": {"Gender": 2.0, "Age": 23.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 9.0, "Education in IA (ind_priv)": null, "Secondary concentration, free": "Biology", "Tertiary concentration, free": null, "Education in IA (gov_mil)": null, "Primary concentration, free": "Chemistry"}, "employment": {"Industry experience as an analyst": null, "Decscription of career, occupation": "Not Applicable", "Current industry free": "Health care", "Other experience Free": null, "Current job free": "Hudson River HealthCare", "Current title free": "AmeriCorps Member"}, "exam_scores": {"Experiential inductive cognitive style": 3.3, "Need for cognition": 5.166666667, "Need for closure": 4.0, "Rational deductive cognitive style": 5.5, "Subjective Numeracy Scale": 4.4, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 6.0, "OT1 Score": 4, "Time to Complete OT1": 1075, "Time to Complete OT2": 1230, "Combined OT Scores": 6.0, "UX Engagement Composite": 2.3125, "UX OT 2 Cognitive Load Composite": 2.64, "UX OT Enjoyment Composite": 4.0, "Total Time to Complete All Tasks": 2305, "OT2 Confidence": 8.6, "UX OT1 Bedford Workload Composite": 5.666666667, "UX OT2 Engagement Composite": 2.375, "UX OT1 Engagement Composite": 2.25, "UX Bedford Workload (Mental Effort)": 6.0, "Ave OT Confidence": 8.6750000000000007, "UX OT 1 Cognitive Load Composite": 2.9, "UX OT Cognitive Load Composite": 2.77, "UX Bedford Workload (Rel Skill Level)": 6.0, "OT1 Confidence": 8.75, "UX Bedford Workload Composite": 5.8333333335000006, "OT2 Score": 2.0, "UX Bedford Workload (Difficulty)": 5.5}, "log_data": {"OT1": {"total_counts": 191, "logs": {"count": [1, 9, 0, 0, 0, 0, 0, 3, 3, 0, 1, 0, 0, 0, 1, 8, 23, 0, 0, 0, 15, 1, 0, 0, 0, 15, 0, 0, 1, 0, 0, 47, 23, 3, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 12, 9, 0, 0, 0, 4, 4, 1, 1, 3], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "22ad491b9223d35edc7a76ee18b1b3_1447"}, "OT2": {"total_counts": 422, "logs": {"count": [4, 14, 0, 0, 3, 1, 1, 11, 14, 0, 3, 2, 0, 0, 0, 19, 40, 0, 0, 0, 28, 6, 0, 0, 0, 28, 0, 0, 0, 0, 1, 104, 39, 9, 5, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 1, 0, 0, 41, 14, 0, 0, 0, 9, 9, 1, 0, 5], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "22ad491b9223d35edc7a76ee18b1b3_1446"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "22ad491b9223d35edc7a76ee18b1b3"}, {"intake_data": {"demographics": {"Gender": 2.0, "Age": 33.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 6.0, "Education in IA (ind_priv)": null, "Secondary concentration, free": "Business", "Tertiary concentration, free": null, "Education in IA (gov_mil)": null, "Primary concentration, free": "Psychology"}, "employment": {"Industry experience as an analyst": null, "Decscription of career, occupation": "Not Applicable", "Current industry free": "Computers", "Other experience Free": null, "Current job free": "Computer Doctors", "Current title free": "Computer Technician/Programmer"}, "exam_scores": {"Experiential inductive cognitive style": 4.3, "Need for cognition": 4.666666667, "Need for closure": 3.5333333330000003, "Rational deductive cognitive style": 5.1, "Subjective Numeracy Scale": 3.6, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 5.333333333, "OT1 Score": 3, "Time to Complete OT1": 774, "Time to Complete OT2": 1518, "Combined OT Scores": 6.0, "UX Engagement Composite": 3.75, "UX OT 2 Cognitive Load Composite": 2.92, "UX OT Enjoyment Composite": 4.0, "Total Time to Complete All Tasks": 2292, "OT2 Confidence": 8.0, "UX OT1 Bedford Workload Composite": 5.0, "UX OT2 Engagement Composite": 3.625, "UX OT1 Engagement Composite": 3.875, "UX Bedford Workload (Mental Effort)": 6.0, "Ave OT Confidence": 7.625, "UX OT 1 Cognitive Load Composite": 2.6, "UX OT Cognitive Load Composite": 2.7599999999999998, "UX Bedford Workload (Rel Skill Level)": 5.0, "OT1 Confidence": 7.25, "UX Bedford Workload Composite": 5.1666666664999994, "OT2 Score": 3.0, "UX Bedford Workload (Difficulty)": 4.5}, "log_data": {"OT1": {"total_counts": 79, "logs": {"count": [7, 18, 0, 0, 0, 7, 3, 0, 0, 6, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 8, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 4, 4, 1, 1, 6], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "2c3ffb5ce28d81922a66abbf4409e8_1717"}, "OT2": {"total_counts": 217, "logs": {"count": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 4, 0, 1, 0, 7, 11, 0, 0, 0, 6, 0, 1, 1, 0, 7, 0, 2, 1, 0, 0, 94, 40, 0, 1, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 12, 3, 0, 0, 0, 6, 7, 1, 0, 2], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "2c3ffb5ce28d81922a66abbf4409e8_1716"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "2c3ffb5ce28d81922a66abbf4409e8"}, {"intake_data": {"demographics": {"Gender": 1.0, "Age": 18.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 5.0, "Education in IA (ind_priv)": null, "Secondary concentration, free": null, "Tertiary concentration, free": null, "Education in IA (gov_mil)": null, "Primary concentration, free": "Criminal Justice with a concentration in Forensic Psychology", "Education Concentration": "Behavioral and Social Sciences"}, "employment": {"Industry experience as an analyst": null, "Decscription of career, occupation": "Not Applicable", "Current industry free": null, "Other experience Free": null, "Current job free": null, "Current title free": null}, "exam_scores": {"Experiential inductive cognitive style": 6.7, "Need for cognition": 4.444444444, "Need for closure": 5.4, "Rational deductive cognitive style": 5.0, "Subjective Numeracy Scale": 4.2, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 3.333333333, "OT1 Score": 1, "Time to Complete OT1": 448, "Time to Complete OT2": 444, "Combined OT Scores": 4.0, "UX Engagement Composite": 2.6875, "UX OT 2 Cognitive Load Composite": 3.8, "UX OT Enjoyment Composite": 1.0, "Total Time to Complete All Tasks": 892, "OT2 Confidence": 10.0, "UX OT1 Bedford Workload Composite": 4.0, "UX OT2 Engagement Composite": 2.75, "UX OT1 Engagement Composite": 2.625, "UX Bedford Workload (Mental Effort)": 4.0, "Ave OT Confidence": 8.75, "UX OT 1 Cognitive Load Composite": 3.8, "UX OT Cognitive Load Composite": 3.7999999999999998, "UX Bedford Workload (Rel Skill Level)": 3.5, "OT1 Confidence": 7.5, "UX Bedford Workload Composite": 3.6666666665000003, "OT2 Score": 3.0, "UX Bedford Workload (Difficulty)": 3.5}, "log_data": {"OT1": {"total_counts": 57, "logs": {"count": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 2, 0, 0, 1, 1, 6, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 7, 3, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 4, 0, 0, 0, 0, 1, 1, 7, 7], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "4066bc86851401eecd0d1c4bf02ef6_1065"}, "OT2": {"total_counts": 110, "logs": {"count": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 7, 6, 0, 0, 0, 4, 11, 0, 0, 0, 5, 0, 0, 0, 0, 5, 0, 4, 5, 0, 0, 27, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 4, 0, 0, 0, 0, 0, 1, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "4066bc86851401eecd0d1c4bf02ef6_1064"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "4066bc86851401eecd0d1c4bf02ef6"}, {"intake_data": {"demographics": {"Gender": 1.0, "Age": 26.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 8.0, "Education in IA (ind_priv)": null, "Secondary concentration, free": "psychology ", "Tertiary concentration, free": "business ", "Education in IA (gov_mil)": null, "Primary concentration, free": "Computer science"}, "employment": {"Industry experience as an analyst": null, "Decscription of career, occupation": "Not Applicable", "Current industry free": "Real estate ", "Other experience Free": null, "Current job free": "Diamond real estate", "Current title free": "Sales"}, "exam_scores": {"Experiential inductive cognitive style": 3.6, "Need for cognition": 4.166666667, "Need for closure": 3.2, "Rational deductive cognitive style": 5.3, "Subjective Numeracy Scale": 3.4, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 6.0, "OT1 Score": 0, "Time to Complete OT1": 999, "Time to Complete OT2": 423, "Combined OT Scores": 2.0, "UX Engagement Composite": 2.5, "UX OT 2 Cognitive Load Composite": 3.6, "UX OT Enjoyment Composite": 5.0, "Total Time to Complete All Tasks": 1422, "OT2 Confidence": 9.0, "UX OT1 Bedford Workload Composite": 7.0, "UX OT2 Engagement Composite": 2.125, "UX OT1 Engagement Composite": 2.875, "UX Bedford Workload (Mental Effort)": 8.5, "Ave OT Confidence": 9.25, "UX OT 1 Cognitive Load Composite": 4.0, "UX OT Cognitive Load Composite": 3.7999999999999998, "UX Bedford Workload (Rel Skill Level)": 5.0, "OT1 Confidence": 9.5, "UX Bedford Workload Composite": 6.5, "OT2 Score": 2.0, "UX Bedford Workload (Difficulty)": 6.0}, "log_data": {"OT1": {"total_counts": 205, "logs": {"count": [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 9, 5, 3, 0, 2, 1, 1, 1, 0, 3, 1, 2, 0, 0, 0, 0, 66, 53, 0, 4, 2, 1, 1, 0, 2, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 12, 17, 2, 0, 2], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "4965cad2df49a1f5a6c902cef4ba2b_1618"}, "OT2": {"total_counts": 42, "logs": {"count": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 7, 0, 0, 6, 4, 0, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "4965cad2df49a1f5a6c902cef4ba2b_1619"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "4965cad2df49a1f5a6c902cef4ba2b"}, {"intake_data": {"demographics": {"Gender": 1.0, "Age": 49.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 9.0, "Education in IA (ind_priv)": 2.0, "Secondary concentration, free": "Historic Preservation", "Tertiary concentration, free": null, "Education in IA (gov_mil)": 2.0, "Primary concentration, free": "Architecture History", "Education Concentration": "Art, Design, & Performance Art"}, "employment": {"Current job free": "Middle school math teacher", "Industry experience as an analyst": null, "Current industry free": "education", "Current title free": "teacher", "Other experience Free": null}, "exam_scores": {"Experiential inductive cognitive style": 5.6, "Need for cognition": 5.222222222, "Need for closure": 3.0, "Rational deductive cognitive style": 5.8, "Subjective Numeracy Scale": 5.0, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 5.0, "OT1 Score": 3, "Time to Complete OT1": 344, "Time to Complete OT2": 440, "Combined OT Scores": 3.0, "UX Engagement Composite": 2.875, "UX OT 2 Cognitive Load Composite": 3.96, "UX OT Enjoyment Composite": 5.0, "Total Time to Complete All Tasks": 784, "OT2 Confidence": 7.8, "UX OT1 Bedford Workload Composite": 5.0, "UX OT2 Engagement Composite": 2.625, "UX OT1 Engagement Composite": 3.125, "UX Bedford Workload (Mental Effort)": 6.0, "Ave OT Confidence": 7.9000000000000004, "UX OT 1 Cognitive Load Composite": 3.25, "UX OT Cognitive Load Composite": 3.605, "UX Bedford Workload (Rel Skill Level)": 5.0, "OT1 Confidence": 8.0, "UX Bedford Workload Composite": 5.0, "OT2 Score": 0.0, "UX Bedford Workload (Difficulty)": 4.0}, "log_data": {"OT1": {"total_counts": 29, "logs": {"count": [1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 2, 2, 4], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "4e98ea80f09b238e7148d87f55497c_1505"}, "OT2": {"total_counts": 11, "logs": {"count": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 1, 0, 1], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "4e98ea80f09b238e7148d87f55497c_1504"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "4e98ea80f09b238e7148d87f55497c"}, {"intake_data": {"demographics": {"Gender": 1.0, "Age": 37.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 8.0, "Education in IA (ind_priv)": 2.0, "Secondary concentration, free": "Business Administrative", "Tertiary concentration, free": "none", "Education in IA (gov_mil)": 2.0, "Primary concentration, free": "Health Information Technology"}, "employment": {"Current job free": null, "Industry experience as an analyst": null, "Current industry free": null, "Current title free": null, "Other experience Free": null}, "exam_scores": {"Experiential inductive cognitive style": 5.6, "Need for cognition": 5.055555556, "Need for closure": 4.8, "Rational deductive cognitive style": 6.2, "Subjective Numeracy Scale": 4.0, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": null, "OT1 Score": 2, "Time to Complete OT1": 1009, "Time to Complete OT2": 931, "Combined OT Scores": 4.0, "UX Engagement Composite": null, "UX OT 2 Cognitive Load Composite": null, "UX OT Enjoyment Composite": null, "Total Time to Complete All Tasks": 1940, "OT2 Confidence": 7.6, "UX OT1 Bedford Workload Composite": null, "UX OT2 Engagement Composite": null, "UX OT1 Engagement Composite": null, "UX Bedford Workload (Mental Effort)": null, "Ave OT Confidence": 7.2999999999999998, "UX OT 1 Cognitive Load Composite": null, "UX OT Cognitive Load Composite": null, "UX Bedford Workload (Rel Skill Level)": null, "OT1 Confidence": 7.0, "UX Bedford Workload Composite": null, "OT2 Score": 2.0, "UX Bedford Workload (Difficulty)": null}, "log_data": {"OT1": {"total_counts": 87, "logs": {"count": [3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 11, 0, 3, 2, 0, 2, 0, 1, 0, 3, 4, 1, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 0, 1, 0, 11], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "556e08eca3cc8ad7a54a870f1e1eb0_1522"}, "OT2": {"total_counts": 55, "logs": {"count": [3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 7, 6, 0, 3, 0, 0, 2, 0, 0, 0, 3, 7, 0, 0, 0, 0, 0, 6, 5, 0, 0, 0, 0, 0, 1, 0, 1], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "556e08eca3cc8ad7a54a870f1e1eb0_1523"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "556e08eca3cc8ad7a54a870f1e1eb0"}, {"intake_data": {"demographics": {"Gender": 1.0, "Age": 28.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 12.0, "Education in IA (ind_priv)": 2.0, "Secondary concentration, free": "Anthropology", "Tertiary concentration, free": null, "Education in IA (gov_mil)": 2.0, "Primary concentration, free": "Epidemiology"}, "employment": {"Current job free": "Research Scientist 1", "Industry experience as an analyst": null, "Current industry free": "Department of Health", "Current title free": null, "Other experience Free": null}, "exam_scores": {"Experiential inductive cognitive style": 2.6, "Need for cognition": 3.888888889, "Need for closure": 3.4666666669999997, "Rational deductive cognitive style": 4.7, "Subjective Numeracy Scale": 3.2, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 5.0, "OT1 Score": 3, "Time to Complete OT1": 1152, "Time to Complete OT2": 911, "Combined OT Scores": 6.0, "UX Engagement Composite": 2.9375, "UX OT 2 Cognitive Load Composite": 2.28, "UX OT Enjoyment Composite": 3.0, "Total Time to Complete All Tasks": 2063, "OT2 Confidence": 7.2, "UX OT1 Bedford Workload Composite": 7.0, "UX OT2 Engagement Composite": 3.625, "UX OT1 Engagement Composite": 2.25, "UX Bedford Workload (Mental Effort)": 6.5, "Ave OT Confidence": 6.8499999999999996, "UX OT 1 Cognitive Load Composite": 3.105263158, "UX OT Cognitive Load Composite": 2.6926315789999999, "UX Bedford Workload (Rel Skill Level)": 6.0, "OT1 Confidence": 6.5, "UX Bedford Workload Composite": 6.0, "OT2 Score": 3.0, "UX Bedford Workload (Difficulty)": 5.5}, "log_data": {"OT1": {"total_counts": 263, "logs": {"count": [4, 14, 0, 0, 0, 2, 3, 2, 3, 2, 1, 1, 0, 0, 3, 4, 8, 0, 0, 0, 2, 1, 0, 0, 0, 2, 0, 35, 18, 0, 0, 68, 22, 9, 4, 0, 0, 3, 0, 0, 0, 5, 2, 0, 0, 0, 0, 0, 18, 3, 0, 0, 0, 8, 12, 3, 0, 1], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "5d8ef5e232cc4396f552c26238cc17_1575"}, "OT2": {"total_counts": 203, "logs": {"count": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 6, 17, 0, 0, 0, 6, 2, 0, 0, 0, 6, 0, 5, 3, 0, 0, 79, 26, 0, 6, 0, 1, 4, 0, 0, 0, 6, 6, 0, 0, 1, 0, 0, 18, 4, 0, 0, 0, 2, 2, 1, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "5d8ef5e232cc4396f552c26238cc17_1574"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "5d8ef5e232cc4396f552c26238cc17"}, {"intake_data": {"demographics": {"Gender": 1.0, "Age": 27.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 6.0, "Education in IA (ind_priv)": null, "Secondary concentration, free": null, "Tertiary concentration, free": null, "Education in IA (gov_mil)": null, "Primary concentration, free": "General Studies"}, "employment": {"Industry experience as an analyst": null, "Decscription of career, occupation": "Not Applicable", "Current industry free": null, "Other experience Free": null, "Current job free": null, "Current title free": null}, "exam_scores": {"Experiential inductive cognitive style": 6.2, "Need for cognition": 5.166666667, "Need for closure": 4.4, "Rational deductive cognitive style": 5.9, "Subjective Numeracy Scale": 3.8, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 6.0, "OT1 Score": 3, "Time to Complete OT1": 541, "Time to Complete OT2": 1330, "Combined OT Scores": 5.0, "UX Engagement Composite": 1.75, "UX OT 2 Cognitive Load Composite": 4.4, "UX OT Enjoyment Composite": 1.0, "Total Time to Complete All Tasks": 1871, "OT2 Confidence": 7.2, "UX OT1 Bedford Workload Composite": null, "UX OT2 Engagement Composite": 1.75, "UX OT1 Engagement Composite": null, "UX Bedford Workload (Mental Effort)": 5.0, "Ave OT Confidence": 6.4749999999999996, "UX OT 1 Cognitive Load Composite": null, "UX OT Cognitive Load Composite": 4.4000000000000004, "UX Bedford Workload (Rel Skill Level)": 6.0, "OT1 Confidence": 5.75, "UX Bedford Workload Composite": 6.0, "OT2 Score": 2.0, "UX Bedford Workload (Difficulty)": 7.0}, "log_data": {"OT1": {"total_counts": 134, "logs": {"count": [9, 15, 0, 1, 2, 2, 5, 5, 3, 3, 1, 0, 0, 0, 1, 2, 7, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 15, 9, 5, 2, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 13, 6, 0, 0, 0, 6, 6, 1, 2, 6], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "7202ff9d3b3e4a51ed7e54565d6069_2295"}, "OT2": {"total_counts": 271, "logs": {"count": [1, 0, 0, 0, 0, 0, 0, 3, 3, 0, 4, 1, 0, 0, 4, 8, 27, 0, 0, 0, 12, 2, 0, 0, 0, 12, 0, 17, 11, 0, 0, 55, 22, 2, 5, 0, 0, 0, 0, 0, 0, 5, 3, 0, 0, 0, 0, 0, 23, 14, 1, 1, 0, 12, 13, 5, 2, 3], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "7202ff9d3b3e4a51ed7e54565d6069_2294"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "7202ff9d3b3e4a51ed7e54565d6069"}, {"intake_data": {"demographics": {"Gender": 2.0, "Age": 48.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 8.0, "Education in IA (ind_priv)": null, "Secondary concentration, free": "Art", "Tertiary concentration, free": null, "Education in IA (gov_mil)": null, "Primary concentration, free": "Mass Communications (film)"}, "employment": {"Industry experience as an analyst": null, "Decscription of career, occupation": "Not Applicable", "Current industry free": "Crowdsoursing", "Other experience Free": null, "Current job free": "Self employed", "Current title free": "Independent contractor"}, "exam_scores": {"Experiential inductive cognitive style": 3.4, "Need for cognition": 2.9444444439999997, "Need for closure": 5.333333333, "Rational deductive cognitive style": 3.4, "Subjective Numeracy Scale": 3.8, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 4.666666667, "OT1 Score": 2, "Time to Complete OT1": 866, "Time to Complete OT2": 744, "Combined OT Scores": 4.0, "UX Engagement Composite": 3.6875, "UX OT 2 Cognitive Load Composite": 2.6, "UX OT Enjoyment Composite": 4.5, "Total Time to Complete All Tasks": 1610, "OT2 Confidence": 9.0, "UX OT1 Bedford Workload Composite": 4.0, "UX OT2 Engagement Composite": 3.75, "UX OT1 Engagement Composite": 3.625, "UX Bedford Workload (Mental Effort)": 5.0, "Ave OT Confidence": 9.125, "UX OT 1 Cognitive Load Composite": 2.7, "UX OT Cognitive Load Composite": 2.6500000000000004, "UX Bedford Workload (Rel Skill Level)": 3.5, "OT1 Confidence": 9.25, "UX Bedford Workload Composite": 4.3333333335000006, "OT2 Score": 2.0, "UX Bedford Workload (Difficulty)": 4.5}, "log_data": {"OT1": {"total_counts": 144, "logs": {"count": [0, 6, 0, 0, 0, 0, 1, 2, 3, 0, 0, 0, 0, 0, 1, 4, 11, 0, 0, 0, 3, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 31, 23, 4, 2, 0, 0, 0, 0, 0, 0, 2, 9, 5, 0, 0, 0, 0, 18, 2, 0, 0, 0, 6, 6, 1, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "75ecb030c581a555d4b5c63f48d0f2_1498"}, "OT2": {"total_counts": 145, "logs": {"count": [1, 8, 0, 0, 0, 1, 3, 3, 3, 1, 0, 0, 0, 0, 1, 9, 13, 0, 0, 0, 4, 0, 1, 0, 1, 4, 0, 6, 4, 0, 0, 22, 7, 6, 3, 0, 0, 3, 0, 0, 0, 3, 6, 2, 0, 0, 0, 0, 17, 0, 0, 0, 0, 6, 6, 1, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "75ecb030c581a555d4b5c63f48d0f2_1499"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "75ecb030c581a555d4b5c63f48d0f2"}, {"intake_data": {"demographics": {"Gender": 2.0, "Age": 19.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 5.0, "Education in IA (ind_priv)": null, "Secondary concentration, free": "National Security", "Tertiary concentration, free": null, "Education in IA (gov_mil)": null, "Primary concentration, free": "Criminal Justice", "Education Concentration": "Behavioral and Social Sciences"}, "employment": {"Industry experience as an analyst": null, "Decscription of career, occupation": "Not Applicable", "Current industry free": null, "Other experience Free": null, "Current job free": null, "Current title free": null}, "exam_scores": {"Experiential inductive cognitive style": 5.4, "Need for cognition": 5.166666667, "Need for closure": 4.6, "Rational deductive cognitive style": 5.4, "Subjective Numeracy Scale": 4.4, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 3.666666667, "OT1 Score": 4, "Time to Complete OT1": 497, "Time to Complete OT2": 611, "Combined OT Scores": 8.0, "UX Engagement Composite": 3.125, "UX OT 2 Cognitive Load Composite": 1.76, "UX OT Enjoyment Composite": 3.5, "Total Time to Complete All Tasks": 1108, "OT2 Confidence": 9.4, "UX OT1 Bedford Workload Composite": 6.666666667, "UX OT2 Engagement Composite": 3.375, "UX OT1 Engagement Composite": 2.875, "UX Bedford Workload (Mental Effort)": 6.0, "Ave OT Confidence": 8.6999999999999993, "UX OT 1 Cognitive Load Composite": 2.95, "UX OT Cognitive Load Composite": 2.355, "UX Bedford Workload (Rel Skill Level)": 4.5, "OT1 Confidence": 8.0, "UX Bedford Workload Composite": 5.1666666670000003, "OT2 Score": 4.0, "UX Bedford Workload (Difficulty)": 5.0}, "log_data": {"OT1": {"total_counts": 161, "logs": {"count": [1, 7, 0, 0, 0, 1, 0, 4, 2, 1, 2, 1, 0, 0, 1, 5, 6, 0, 0, 0, 1, 2, 0, 0, 0, 1, 0, 0, 0, 1, 2, 43, 34, 5, 2, 0, 0, 1, 1, 0, 0, 2, 2, 0, 0, 0, 0, 0, 10, 9, 0, 1, 0, 5, 6, 1, 0, 1], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "96517f7a168c43d717bbe7cdf86a86_1124"}, "OT2": {"total_counts": 131, "logs": {"count": [0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 3, 2, 0, 0, 1, 7, 17, 0, 0, 0, 8, 2, 0, 1, 0, 8, 0, 4, 3, 0, 0, 33, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 5, 0, 0, 0, 2, 2, 1, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "96517f7a168c43d717bbe7cdf86a86_1125"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "96517f7a168c43d717bbe7cdf86a86"}, {"intake_data": {"demographics": {"Gender": 1.0, "Age": 28.0, "Ethnicity (other)": null, "Ethnicity": 3.0}, "education": {"Most school completed": 9.0, "Education in IA (ind_priv)": null, "Secondary concentration, free": null, "Tertiary concentration, free": null, "Education in IA (gov_mil)": null, "Primary concentration, free": "Civil & Construction Engineering Technology ", "Education Concentration": "Civil Engineering"}, "employment": {"Industry experience as an analyst": null, "Decscription of career, occupation": "Not Applicable", "Current industry free": null, "Other experience Free": null, "Current job free": "Out of the workforce (Full-time Parent)", "Current title free": null}, "exam_scores": {"Experiential inductive cognitive style": 4.4, "Need for cognition": 4.722222222, "Need for closure": 5.933333332999999, "Rational deductive cognitive style": 5.7, "Subjective Numeracy Scale": 3.4, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 6.0, "OT1 Score": 1, "Time to Complete OT1": 990, "Time to Complete OT2": 763, "Combined OT Scores": 5.0, "UX Engagement Composite": 2.5625, "UX OT 2 Cognitive Load Composite": 2.56, "UX OT Enjoyment Composite": 3.5, "Total Time to Complete All Tasks": 1753, "OT2 Confidence": 8.4, "UX OT1 Bedford Workload Composite": 8.0, "UX OT2 Engagement Composite": 2.375, "UX OT1 Engagement Composite": 2.75, "UX Bedford Workload (Mental Effort)": 8.0, "Ave OT Confidence": 8.0749999999999993, "UX OT 1 Cognitive Load Composite": 2.85, "UX OT Cognitive Load Composite": 2.7050000000000001, "UX Bedford Workload (Rel Skill Level)": 6.0, "OT1 Confidence": 7.75, "UX Bedford Workload Composite": 7.0, "OT2 Score": 4.0, "UX Bedford Workload (Difficulty)": 7.0}, "log_data": {"OT1": {"total_counts": 184, "logs": {"count": [0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 3, 3, 0, 0, 1, 12, 14, 0, 0, 0, 10, 0, 1, 0, 1, 9, 0, 17, 11, 0, 0, 47, 9, 2, 2, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 16, 8, 0, 0, 0, 4, 4, 1, 0, 3], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "a1dce5ca3ef69038c695bb7f748bc3_1553"}, "OT2": {"total_counts": 140, "logs": {"count": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 1, 0, 0, 0, 0, 2, 15, 0, 0, 0, 7, 0, 0, 0, 0, 7, 0, 15, 9, 0, 0, 53, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 5, 2, 0, 0, 0, 1, 1, 1, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "a1dce5ca3ef69038c695bb7f748bc3_1552"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "a1dce5ca3ef69038c695bb7f748bc3"}, {"intake_data": {"demographics": {"Gender": 2.0, "Age": 31.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 8.0, "Education in IA (ind_priv)": null, "Secondary concentration, free": "Systems Engineering", "Tertiary concentration, free": null, "Education in IA (gov_mil)": null, "Primary concentration, free": "Computer Sciences"}, "employment": {"Industry experience as an analyst": null, "Decscription of career, occupation": "Not Applicable", "Current industry free": "IT", "Other experience Free": null, "Current job free": "WCCS", "Current title free": "Consultant"}, "exam_scores": {"Experiential inductive cognitive style": 4.9, "Need for cognition": 4.8888888889999995, "Need for closure": 4.733333333, "Rational deductive cognitive style": 5.8, "Subjective Numeracy Scale": 3.2, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 4.0, "OT1 Score": 3, "Time to Complete OT1": 468, "Time to Complete OT2": 579, "Combined OT Scores": 6.0, "UX Engagement Composite": 3.1875, "UX OT 2 Cognitive Load Composite": 2.08, "UX OT Enjoyment Composite": 4.5, "Total Time to Complete All Tasks": 1047, "OT2 Confidence": 10.4, "UX OT1 Bedford Workload Composite": 2.333333333, "UX OT2 Engagement Composite": 3.25, "UX OT1 Engagement Composite": 3.125, "UX Bedford Workload (Mental Effort)": 5.0, "Ave OT Confidence": 10.699999999999999, "UX OT 1 Cognitive Load Composite": 1.45, "UX OT Cognitive Load Composite": 1.7650000000000001, "UX Bedford Workload (Rel Skill Level)": 1.0, "OT1 Confidence": 11.0, "UX Bedford Workload Composite": 3.1666666665000003, "OT2 Score": 3.0, "UX Bedford Workload (Difficulty)": 3.5}, "log_data": {"OT1": {"total_counts": 72, "logs": {"count": [1, 10, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 9, 3, 2, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 4, 2, 0, 0, 0, 5, 7, 1, 0, 1], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "a4308a9ed834cc96ab8c7650855716_1347"}, "OT2": {"total_counts": 124, "logs": {"count": [0, 1, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 7, 16, 0, 0, 0, 4, 3, 0, 0, 0, 4, 0, 1, 1, 0, 0, 15, 12, 0, 5, 0, 0, 4, 0, 0, 0, 6, 3, 1, 0, 1, 0, 0, 19, 10, 0, 0, 0, 4, 3, 1, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "a4308a9ed834cc96ab8c7650855716_1346"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "a4308a9ed834cc96ab8c7650855716"}, {"intake_data": {"demographics": {"Gender": 1.0, "Age": 31.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 7.0, "Education in IA (ind_priv)": null, "Secondary concentration, free": null, "Tertiary concentration, free": null, "Education in IA (gov_mil)": null, "Primary concentration, free": "RN", "Education Concentration": "Medical and Biomedical"}, "employment": {"Industry experience as an analyst": null, "Decscription of career, occupation": "Not Applicable", "Current industry free": "Health", "Other experience Free": null, "Current job free": "Banner Health", "Current title free": "RN"}, "exam_scores": {"Experiential inductive cognitive style": 6.3, "Need for cognition": 6.444444444, "Need for closure": 3.6, "Rational deductive cognitive style": 6.9, "Subjective Numeracy Scale": 5.0, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 6.0, "OT1 Score": 2, "Time to Complete OT1": 250, "Time to Complete OT2": 770, "Combined OT Scores": 4.0, "UX Engagement Composite": 3.125, "UX OT 2 Cognitive Load Composite": 1.88, "UX OT Enjoyment Composite": 5.0, "Total Time to Complete All Tasks": 1020, "OT2 Confidence": 8.8, "UX OT1 Bedford Workload Composite": 4.0, "UX OT2 Engagement Composite": 3.25, "UX OT1 Engagement Composite": 3.0, "UX Bedford Workload (Mental Effort)": 5.0, "Ave OT Confidence": 8.2750000000000004, "UX OT 1 Cognitive Load Composite": 1.4, "UX OT Cognitive Load Composite": 1.6399999999999999, "UX Bedford Workload (Rel Skill Level)": 5.0, "OT1 Confidence": 7.75, "UX Bedford Workload Composite": 5.0, "OT2 Score": 2.0, "UX Bedford Workload (Difficulty)": 5.0}, "log_data": {"OT1": {"total_counts": 16, "logs": {"count": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "ad7dc209e27766bf3298ca54b5f843_1733"}, "OT2": {"total_counts": 134, "logs": {"count": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 1, 13, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 6, 4, 0, 0, 51, 22, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 5, 0, 0, 0, 5, 5, 1, 1, 4], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "ad7dc209e27766bf3298ca54b5f843_1732"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "ad7dc209e27766bf3298ca54b5f843"}, {"intake_data": {"demographics": {"Gender": 1.0, "Age": 31.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 5.0, "Education in IA (ind_priv)": 2.0, "Secondary concentration, free": "n/a", "Tertiary concentration, free": "n/a", "Education in IA (gov_mil)": 2.0, "Primary concentration, free": "n/a", "Education Concentration": null}, "employment": {"Current job free": "TNI", "Industry experience as an analyst": null, "Current industry free": "IT", "Current title free": "Technical Support Representative", "Other experience Free": null}, "exam_scores": {"Experiential inductive cognitive style": 3.1, "Need for cognition": 6.294117647, "Need for closure": 4.2, "Rational deductive cognitive style": 6.2, "Subjective Numeracy Scale": 4.2, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 6.0, "OT1 Score": 2, "Time to Complete OT1": 827, "Time to Complete OT2": 1175, "Combined OT Scores": 4.0, "UX Engagement Composite": 3.5, "UX OT 2 Cognitive Load Composite": 2.84, "UX OT Enjoyment Composite": 4.0, "Total Time to Complete All Tasks": 2002, "OT2 Confidence": 10.0, "UX OT1 Bedford Workload Composite": 6.333333333, "UX OT2 Engagement Composite": 3.5, "UX OT1 Engagement Composite": 3.5, "UX Bedford Workload (Mental Effort)": 7.0, "Ave OT Confidence": 10.25, "UX OT 1 Cognitive Load Composite": 2.1, "UX OT Cognitive Load Composite": 2.4699999999999998, "UX Bedford Workload (Rel Skill Level)": 5.5, "OT1 Confidence": 10.5, "UX Bedford Workload Composite": 6.1666666664999994, "OT2 Score": 2.0, "UX Bedford Workload (Difficulty)": 6.0}, "log_data": {"OT1": {"total_counts": 134, "logs": {"count": [1, 15, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 11, 14, 0, 0, 0, 6, 3, 0, 0, 0, 5, 0, 0, 0, 0, 0, 11, 9, 7, 3, 0, 0, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 16, 6, 0, 0, 0, 8, 7, 1, 0, 3], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "b2227104cea2e580269cc4ef5944ae_2331"}, "OT2": {"total_counts": 206, "logs": {"count": [2, 1, 0, 0, 0, 0, 0, 0, 2, 0, 8, 7, 0, 0, 0, 9, 12, 0, 0, 0, 1, 2, 1, 2, 0, 1, 0, 2, 0, 0, 0, 52, 35, 0, 8, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 0, 0, 1, 26, 4, 0, 0, 0, 5, 4, 3, 0, 4], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "b2227104cea2e580269cc4ef5944ae_2330"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "b2227104cea2e580269cc4ef5944ae"}, {"intake_data": {"demographics": {"Gender": 1.0, "Age": 41.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 10.0, "Education in IA (ind_priv)": 1.0, "Secondary concentration, free": "Data Science", "Tertiary concentration, free": null, "Education in IA (gov_mil)": 2.0, "Primary concentration, free": "Computer Science"}, "employment": {"Current job free": null, "Industry experience as an analyst": 7.0, "Current industry free": null, "Current title free": null, "Other experience Free": null}, "exam_scores": {"Experiential inductive cognitive style": 5.25, "Need for cognition": 4.777777778, "Need for closure": null, "Rational deductive cognitive style": 5.428571429, "Subjective Numeracy Scale": 4.8, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": null, "OT1 Score": 3, "Time to Complete OT1": 452, "Time to Complete OT2": 886, "Combined OT Scores": 6.0, "UX Engagement Composite": null, "UX OT 2 Cognitive Load Composite": null, "UX OT Enjoyment Composite": null, "Total Time to Complete All Tasks": 1338, "OT2 Confidence": 10.0, "UX OT1 Bedford Workload Composite": null, "UX OT2 Engagement Composite": null, "UX OT1 Engagement Composite": null, "UX Bedford Workload (Mental Effort)": null, "Ave OT Confidence": 9.8333333335000006, "UX OT 1 Cognitive Load Composite": null, "UX OT Cognitive Load Composite": null, "UX Bedford Workload (Rel Skill Level)": null, "OT1 Confidence": 9.666666667000001, "UX Bedford Workload Composite": null, "OT2 Score": 3.0, "UX Bedford Workload (Difficulty)": null}, "log_data": {"OT1": {"total_counts": 152, "logs": {"count": [7, 12, 0, 1, 1, 1, 0, 2, 1, 1, 1, 0, 0, 0, 2, 2, 6, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 5, 4, 0, 0, 37, 21, 10, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 7, 1, 0, 0, 0, 8, 9, 2, 0, 5], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "bb757575e77037ff45fa1e8b6ad53e_675"}, "OT2": {"total_counts": 314, "logs": {"count": [1, 2, 0, 0, 0, 0, 0, 1, 3, 0, 1, 1, 0, 0, 0, 13, 21, 0, 0, 0, 10, 2, 0, 0, 0, 9, 0, 20, 10, 8, 8, 85, 41, 5, 3, 0, 0, 2, 0, 0, 0, 3, 2, 0, 0, 1, 0, 0, 34, 13, 0, 0, 0, 7, 7, 1, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "bb757575e77037ff45fa1e8b6ad53e_674"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "bb757575e77037ff45fa1e8b6ad53e"}, {"intake_data": {"demographics": {"Gender": 2.0, "Age": null, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 5.0, "Education in IA (ind_priv)": null, "Secondary concentration, free": null, "Tertiary concentration, free": null, "Education in IA (gov_mil)": null, "Primary concentration, free": "Criminal Justice, National Security ", "Education Concentration": null}, "employment": {"Industry experience as an analyst": null, "Decscription of career, occupation": "Not Applicable", "Current industry free": null, "Other experience Free": null, "Current job free": null, "Current title free": null}, "exam_scores": {"Experiential inductive cognitive style": 4.6, "Need for cognition": 5.222222222, "Need for closure": 3.6, "Rational deductive cognitive style": 5.3, "Subjective Numeracy Scale": 4.4, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": null, "OT1 Score": 2, "Time to Complete OT1": 720, "Time to Complete OT2": 1128, "Combined OT Scores": 4.0, "UX Engagement Composite": 2.625, "UX OT 2 Cognitive Load Composite": null, "UX OT Enjoyment Composite": 5.0, "Total Time to Complete All Tasks": 1848, "OT2 Confidence": 9.6, "UX OT1 Bedford Workload Composite": 4.666666667, "UX OT2 Engagement Composite": null, "UX OT1 Engagement Composite": 2.625, "UX Bedford Workload (Mental Effort)": 6.0, "Ave OT Confidence": 10.050000000000001, "UX OT 1 Cognitive Load Composite": 2.3, "UX OT Cognitive Load Composite": 2.2999999999999998, "UX Bedford Workload (Rel Skill Level)": 4.0, "OT1 Confidence": 10.5, "UX Bedford Workload Composite": 4.6666666670000003, "OT2 Score": 2.0, "UX Bedford Workload (Difficulty)": 4.0}, "log_data": {"OT1": {"total_counts": 229, "logs": {"count": [3, 12, 2, 0, 0, 0, 0, 6, 4, 0, 0, 0, 0, 0, 2, 9, 8, 0, 0, 0, 5, 5, 0, 0, 0, 5, 0, 8, 6, 0, 0, 56, 35, 8, 1, 2, 0, 0, 0, 0, 1, 0, 6, 0, 0, 0, 0, 0, 19, 2, 0, 0, 0, 5, 6, 2, 2, 9], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "c352d2a06b009da31f3636dd4f8e86_1138"}, "OT2": {"total_counts": 412, "logs": {"count": [0, 0, 1, 0, 0, 0, 0, 10, 10, 0, 3, 0, 0, 0, 2, 23, 41, 0, 0, 0, 23, 8, 0, 0, 0, 22, 0, 16, 11, 0, 0, 96, 51, 1, 7, 0, 0, 4, 0, 0, 0, 7, 10, 0, 0, 0, 0, 0, 48, 7, 0, 0, 0, 4, 4, 2, 0, 1], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "c352d2a06b009da31f3636dd4f8e86_1139"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "c352d2a06b009da31f3636dd4f8e86"}, {"intake_data": {"demographics": {"Gender": 1.0, "Age": 19.0, "Ethnicity (other)": null, "Ethnicity": 3.0}, "education": {"Most school completed": 7.0, "Education in IA (ind_priv)": null, "Secondary concentration, free": "IT Hardware", "Tertiary concentration, free": null, "Education in IA (gov_mil)": null, "Primary concentration, free": "IT"}, "employment": {"Industry experience as an analyst": null, "Decscription of career, occupation": "Not Applicable", "Current industry free": "IT", "Other experience Free": null, "Current job free": "Student", "Current title free": "Personal Computer Specialist "}, "exam_scores": {"Experiential inductive cognitive style": 5.2, "Need for cognition": 3.833333333, "Need for closure": 4.071428571, "Rational deductive cognitive style": 5.2, "Subjective Numeracy Scale": 4.4, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 8.333333332999999, "OT1 Score": 1, "Time to Complete OT1": 140, "Time to Complete OT2": 296, "Combined OT Scores": 1.0, "UX Engagement Composite": 2.8571428569999999, "UX OT 2 Cognitive Load Composite": 4.6, "UX OT Enjoyment Composite": 2.0, "Total Time to Complete All Tasks": 436, "OT2 Confidence": 2.0, "UX OT1 Bedford Workload Composite": null, "UX OT2 Engagement Composite": 2.857142857, "UX OT1 Engagement Composite": null, "UX Bedford Workload (Mental Effort)": 9.0, "Ave OT Confidence": 1.75, "UX OT 1 Cognitive Load Composite": null, "UX OT Cognitive Load Composite": 4.5999999999999996, "UX Bedford Workload (Rel Skill Level)": 8.0, "OT1 Confidence": 1.5, "UX Bedford Workload Composite": 8.3333333329999988, "OT2 Score": 0.0, "UX Bedford Workload (Difficulty)": 8.0}, "log_data": {"OT1": {"total_counts": 5, "logs": {"count": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "cdc91ace5390c54d72f775ce9c4cd4_1565"}, "OT2": {"total_counts": 34, "logs": {"count": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 1, 3, 7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 0, 0, 0, 0, 0, 2, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "cdc91ace5390c54d72f775ce9c4cd4_1564"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "cdc91ace5390c54d72f775ce9c4cd4"}, {"intake_data": {"demographics": {"Gender": 2.0, "Age": 35.0, "Ethnicity (other)": "mixed", "Ethnicity": null}, "education": {"Most school completed": 6.0, "Education in IA (ind_priv)": 2.0, "Secondary concentration, free": "Engineering", "Tertiary concentration, free": "Business manger", "Education in IA (gov_mil)": 2.0, "Primary concentration, free": "It/ computer networking"}, "employment": {"Current job free": "Freelance", "Industry experience as an analyst": null, "Current industry free": "It/graphic design", "Current title free": "Freelancer", "Other experience Free": null}, "exam_scores": {"Experiential inductive cognitive style": 6.3, "Need for cognition": 5.8888888889999995, "Need for closure": 3.6, "Rational deductive cognitive style": 6.0, "Subjective Numeracy Scale": 4.0, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 5.333333333, "OT1 Score": 3, "Time to Complete OT1": 803, "Time to Complete OT2": 470, "Combined OT Scores": 5.0, "UX Engagement Composite": 2.8125, "UX OT 2 Cognitive Load Composite": 2.48, "UX OT Enjoyment Composite": 4.0, "Total Time to Complete All Tasks": 1273, "OT2 Confidence": 9.2, "UX OT1 Bedford Workload Composite": 7.0, "UX OT2 Engagement Composite": 2.75, "UX OT1 Engagement Composite": 2.875, "UX Bedford Workload (Mental Effort)": 6.0, "Ave OT Confidence": 8.0999999999999996, "UX OT 1 Cognitive Load Composite": 3.05, "UX OT Cognitive Load Composite": 2.7649999999999997, "UX Bedford Workload (Rel Skill Level)": 6.0, "OT1 Confidence": 7.0, "UX Bedford Workload Composite": 6.1666666664999994, "OT2 Score": 2.0, "UX Bedford Workload (Difficulty)": 6.5}, "log_data": {"OT1": {"total_counts": 235, "logs": {"count": [2, 10, 0, 1, 2, 1, 1, 2, 2, 1, 8, 5, 0, 0, 0, 3, 9, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 6, 8, 0, 0, 57, 32, 2, 1, 2, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 23, 17, 0, 6, 1, 10, 10, 1, 2, 1], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "cdceb087a218ddd238ff7123f78f5c_2328"}, "OT2": {"total_counts": 131, "logs": {"count": [0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 5, 5, 0, 0, 1, 4, 26, 0, 0, 0, 15, 1, 0, 0, 0, 15, 0, 0, 1, 0, 0, 7, 4, 0, 4, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 26, 3, 0, 0, 0, 0, 0, 1, 0, 1], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "cdceb087a218ddd238ff7123f78f5c_2329"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "cdceb087a218ddd238ff7123f78f5c"}, {"intake_data": {"demographics": {"Gender": 2.0, "Age": 23.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 9.0, "Education in IA (ind_priv)": null, "Secondary concentration, free": null, "Tertiary concentration, free": null, "Education in IA (gov_mil)": null, "Primary concentration, free": "econ", "Education Concentration": "Behavioral and Social Sciences"}, "employment": {"Industry experience as an analyst": null, "Decscription of career, occupation": "Not Applicable", "Current industry free": "sales", "Other experience Free": null, "Current job free": "sales manager", "Current title free": "sales manager"}, "exam_scores": {"Experiential inductive cognitive style": 5.8, "Need for cognition": 5.722222222, "Need for closure": 5.333333333, "Rational deductive cognitive style": 6.7, "Subjective Numeracy Scale": 5.0, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 4.0, "OT1 Score": 1, "Time to Complete OT1": 466, "Time to Complete OT2": 419, "Combined OT Scores": 2.0, "UX Engagement Composite": 1.4017857144999999, "UX OT 2 Cognitive Load Composite": 2.84, "UX OT Enjoyment Composite": 4.5, "Total Time to Complete All Tasks": 885, "OT2 Confidence": 8.0, "UX OT1 Bedford Workload Composite": 5.0, "UX OT2 Engagement Composite": 1.375, "UX OT1 Engagement Composite": 1.428571429, "UX Bedford Workload (Mental Effort)": 5.5, "Ave OT Confidence": 8.375, "UX OT 1 Cognitive Load Composite": 2.0, "UX OT Cognitive Load Composite": 2.4199999999999999, "UX Bedford Workload (Rel Skill Level)": 4.0, "OT1 Confidence": 8.75, "UX Bedford Workload Composite": 4.5, "OT2 Score": 1.0, "UX Bedford Workload (Difficulty)": 4.0}, "log_data": {"OT1": {"total_counts": 84, "logs": {"count": [1, 10, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 15, 5, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 12, 3, 0, 0, 0, 2, 3, 1, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "e11fcc92688e6048346e2a71559ceb_1632"}, "OT2": {"total_counts": 127, "logs": {"count": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 7, 2, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 2, 1, 0, 0, 30, 19, 0, 10, 0, 0, 9, 0, 0, 7, 3, 0, 0, 0, 0, 0, 0, 20, 12, 0, 0, 0, 0, 0, 1, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "e11fcc92688e6048346e2a71559ceb_1633"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "e11fcc92688e6048346e2a71559ceb"}, {"intake_data": {"demographics": {"Gender": 1.0, "Age": 31.0, "Ethnicity (other)": null, "Ethnicity": 3.0}, "education": {"Most school completed": 10.0, "Education in IA (ind_priv)": null, "Secondary concentration, free": "Japanese", "Tertiary concentration, free": null, "Education in IA (gov_mil)": null, "Primary concentration, free": "Psychology"}, "employment": {"Industry experience as an analyst": null, "Decscription of career, occupation": "Not Applicable", "Current industry free": "Education", "Other experience Free": null, "Current job free": "Teacher", "Current title free": "4th Grade Teacher"}, "exam_scores": {"Experiential inductive cognitive style": 4.5, "Need for cognition": 6.166666667, "Need for closure": 4.533333333, "Rational deductive cognitive style": 6.3, "Subjective Numeracy Scale": 3.8, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 5.0, "OT1 Score": 4, "Time to Complete OT1": 933, "Time to Complete OT2": 839, "Combined OT Scores": 7.0, "UX Engagement Composite": 3.75, "UX OT 2 Cognitive Load Composite": 2.2, "UX OT Enjoyment Composite": 4.5, "Total Time to Complete All Tasks": 1772, "OT2 Confidence": 10.2, "UX OT1 Bedford Workload Composite": 7.0, "UX OT2 Engagement Composite": 4.125, "UX OT1 Engagement Composite": 3.375, "UX Bedford Workload (Mental Effort)": 6.5, "Ave OT Confidence": 9.7249999999999996, "UX OT 1 Cognitive Load Composite": 2.7, "UX OT Cognitive Load Composite": 2.4500000000000002, "UX Bedford Workload (Rel Skill Level)": 6.0, "OT1 Confidence": 9.25, "UX Bedford Workload Composite": 6.0, "OT2 Score": 3.0, "UX Bedford Workload (Difficulty)": 5.5}, "log_data": {"OT1": {"total_counts": 309, "logs": {"count": [7, 16, 0, 1, 1, 5, 4, 5, 5, 4, 5, 4, 0, 0, 1, 3, 14, 0, 0, 0, 7, 0, 0, 0, 0, 6, 0, 29, 17, 0, 0, 95, 35, 0, 1, 2, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 22, 5, 0, 0, 0, 5, 4, 1, 0, 3], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "ed5d72c9831e41b50ee79715c30212_2254"}, "OT2": {"total_counts": 307, "logs": {"count": [0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 7, 5, 0, 0, 1, 6, 43, 0, 0, 0, 17, 1, 0, 0, 0, 16, 0, 16, 9, 0, 0, 101, 38, 0, 2, 0, 0, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 30, 2, 0, 0, 0, 0, 0, 1, 0, 0], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "ed5d72c9831e41b50ee79715c30212_2255"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "ed5d72c9831e41b50ee79715c30212"}, {"intake_data": {"demographics": {"Gender": 1.0, "Age": 18.0, "Ethnicity (other)": null, "Ethnicity": 4.0}, "education": {"Most school completed": 6.0, "Education in IA (ind_priv)": null, "Secondary concentration, free": null, "Tertiary concentration, free": null, "Education in IA (gov_mil)": null, "Primary concentration, free": "Criminal Justice"}, "employment": {"Industry experience as an analyst": null, "Decscription of career, occupation": "Not Applicable", "Current industry free": null, "Other experience Free": null, "Current job free": null, "Current title free": null}, "exam_scores": {"Experiential inductive cognitive style": 4.3, "Need for cognition": 3.0, "Need for closure": 4.933333333, "Rational deductive cognitive style": 2.8, "Subjective Numeracy Scale": 2.4, "Cognitive Reflections Test": 0}}, "OT_data": {"UX OT2 Bedford Workload Composite": 5.333333333, "OT1 Score": 2, "Time to Complete OT1": 299, "Time to Complete OT2": 815, "Combined OT Scores": 5.0, "UX Engagement Composite": 3.125, "UX OT 2 Cognitive Load Composite": 2.4, "UX OT Enjoyment Composite": 4.0, "Total Time to Complete All Tasks": 1114, "OT2 Confidence": 7.6, "UX OT1 Bedford Workload Composite": null, "UX OT2 Engagement Composite": 3.125, "UX OT1 Engagement Composite": null, "UX Bedford Workload (Mental Effort)": 6.0, "Ave OT Confidence": 7.0499999999999998, "UX OT 1 Cognitive Load Composite": null, "UX OT Cognitive Load Composite": 2.3999999999999999, "UX Bedford Workload (Rel Skill Level)": 4.0, "OT1 Confidence": 6.5, "UX Bedford Workload Composite": 5.3333333329999997, "OT2 Score": 3.0, "UX Bedford Workload (Difficulty)": 6.0}, "log_data": {"OT1": {"total_counts": 33, "logs": {"count": [2, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 7, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 3, 4, 1, 0, 1], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "f12273980289f32f37a30bd83740ff_981"}, "OT2": {"total_counts": 181, "logs": {"count": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 2, 12, 4, 0, 0, 0, 36, 1, 1, 2, 0, 74, 0, 0, 1, 0, 0, 10, 4, 0, 4, 0, 1, 3, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 8, 2, 0, 0, 0, 3, 2, 2, 0, 2], "elementGroup": ["chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "chart_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "map_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "query_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "table_group", "top", "top", "top", "top", "top"], "log_id": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "log_strings": ["chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER"], "elementSub": ["linechart", "linechart", "linechart-aggregation", "linechart-trendline-hide", "linechart-trendline-show", "linechart-brush", "-", "linechart-day", "linechart-hour", "date-range", "-", "-", "all-filters", "any-filters", "remove-translation", "timeline", "timeline", "timeline-showFocus-always", "timeline-showFocus-never", "timeline-showFocus-on_filter", "timeline-brush", "-", "timeline-day", "timeline-hour", "timeline-month", "date-range", "timeline-year", "-", "-", "geo-filter", "geo-filter", "map-viewport", "map-viewport", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "-", "layout", "layout"], "activity": ["SHOW", "SHOW", "SELECT", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "SELECT", "ADD", "REMOVE", "SELECT", "SELECT", "SELECT", "SHOW", "SHOW", "ALTER", "ALTER", "ALTER", "SELECT", "DESELECT", "ALTER", "ALTER", "ALTER", "SELECT", "ALTER", "HIDE", "SHOW", "DESELECT", "SELECT", "ALTER", "ALTER", "ALTER", "ADD", "ALTER", "REMOVE", "REMOVE", "SELECT", "SELECT", "ENTER", "ENTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "ALTER", "PERFORM", "SELECT", "HIDE", "SHOW", "SELECT", "ALTER", "ALTER"], "action": ["mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "mouseover", "mouseover_INTERVAL", "click", "click", "click", "drag", "click", "click", "click", "click", "click", "click", "click", "click", "click", "drag", "panstart", "zoom", "click", "click", "click", "click", "click", "click", "click", "keydown", "keydown_INTERVAL", "click", "click", "click", "click", "drag", "drag", "scroll", "scroll_INTERVAL", "keydown_INTERVAL", "click", "click", "click", "click", "click", "click", "dragstart"], "elementType": ["TOOLTIP", "TOOLTIP", "COMBOBOX", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "TAG", "TAG", "BUTTON", "BUTTON", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "CANVAS", "BUTTON", "TOOLTIP", "TOOLTIP", "BUTTON", "CANVAS", "CANVAS", "CANVAS", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "BUTTON", "COMBOBOX", "COMBOBOX", "TEXTBOX", "TEXTBOX", "BUTTON", "BUTTON", "BUTTON", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "DATAGRID", "TEXTBOX", "BUTTON", "RADIOBUTTON", "BUTTON", "BUTTON", "BUTTON", "WORKSPACE", "WORKSPACE"], "nickname": ["linechart_mover", "linechart_mover_int", "linechart_aggregation_select", "linechart_trendline_hide", "linechart_trendline_show", "linechart_select_time_range_drag", "linechart_clear_time_range", "linechart_temp_res_day", "linechart_temp_res_hour", "linechart_select_time_range", "tag_cloud_add_filt", "tag_cloud_rem_filt", "tag_cloud_options_all", "tag_cloud_options_any", "tag_cloud_rem_translation", "timeline_mover", "timeline_mover_int", "timeline_show_focus_always", "timeline_show_focus_never", "timeline_show_focus_on", "timeline_select_time_range_drag", "timeline_clear_range", "timeline_temp_res_day", "timeline_temp_res_hour", "timeline_temp_res_month", "timeline_date_range_select", "timeline_temp_res_year", "map_tooltip_hide", "map_tooltip_show", "map_geofilter_click", "map_geofilter_drag", "map_pan", "map_zoom", "map_overlay_change", "query_add_filter", "query_change_filter", "query_clear_all", "query_remove_filter", "query_select_field", "query_select_operator", "query_enter_search_terms", "query_enter_search_terms_int", "query_update_filt0", "query_update_filt1", "query_update_filt2", "datagrid_sort_col_header", "datagrid_reorder_col", "datagrid_resize_col", "datagrid_scroll", "datagrid_scroll_int", "datagrid_enter_limit", "datagrid_refresh", "datagrid_sort_col_button", "options_hide", "options_show", "select_dataset", "layout_alter", "layout_drag_widget"], "elementId": ["linechart", "linechart", "linechart", "linechart", "linechart", "linechart-brush", "linechart-clear-range", "linechart-day", "linechart-hour", "linechart-range", "tag-cloud", "tag-cloud", "tag-cloud-options", "tag-cloud-options", "tag-cloud-options", "timeline", "timeline", "timeline", "timeline", "timeline", "timeline-brush", "timeline-clear-range", "timeline-day", "timeline-hour", "timeline-month", "timeline-range", "timeline-year", "map", "map", "map", "map", "map", "map", "map-layer-active-button", "filter-builder-add-filter", "filter-builder-and-clauses", "filter-builder-clear-all", "filter-builder-remove-filter", "filter-builder-selected-field", "filter-builder-selectedOperator", "filter-builder-selectedValue", "filter-builder-selectedValue", "filter-builder-update-filter-0", "filter-builder-update-filter-1", "filter-builder-update-filter-2", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid", "datagrid-limit", "datagrid-refresh", "datagrid-sort-direction", "chart-options", "chart-options", "dataset-menu", "workspace", "workspace"]}, "session_id": "f12273980289f32f37a30bd83740ff_980"}}, "application": "Neon", "experiment": "2015_public_xdataonline", "user_hash": "f12273980289f32f37a30bd83740ff"}]; - export default neon_counts; \ No newline at end of file
diff --git a/docker/tap/neon_graph.js b/docker/tap/neon_graph.js deleted file mode 100644 index c84ce9b..0000000 --- a/docker/tap/neon_graph.js +++ /dev/null
@@ -1,2 +0,0 @@ -var graphData = {"out_degree": {"blt": [{"index": 0, "value": 26}, {"index": 1, "value": 3}, {"index": 2, "value": 5}, {"index": 3, "value": 6}, {"index": 4, "value": 4}, {"index": 5, "value": 8}, {"index": 6, "value": 18}, {"index": 7, "value": 18}, {"index": 8, "value": 7}, {"index": 9, "value": 11}, {"index": 10, "value": 12}, {"index": 11, "value": 2}, {"index": 12, "value": 1}, {"index": 13, "value": 4}, {"index": 14, "value": 32}, {"index": 15, "value": 37}, {"index": 16, "value": 5}, {"index": 17, "value": 1}, {"index": 18, "value": 3}, {"index": 19, "value": 7}, {"index": 20, "value": 10}, {"index": 21, "value": 9}, {"index": 22, "value": 4}, {"index": 23, "value": 8}, {"index": 24, "value": 11}, {"index": 25, "value": 4}, {"index": 26, "value": 18}, {"index": 27, "value": 3}, {"index": 28, "value": 3}, {"index": 29, "value": 3}, {"index": 30, "value": 28}, {"index": 31, "value": 27}, {"index": 32, "value": 11}, {"index": 33, "value": 17}, {"index": 34, "value": 9}, {"index": 35, "value": 7}, {"index": 36, "value": 16}, {"index": 37, "value": 13}, {"index": 38, "value": 5}, {"index": 39, "value": 3}, {"index": 40, "value": 13}, {"index": 41, "value": 11}, {"index": 42, "value": 5}, {"index": 43, "value": 1}, {"index": 44, "value": 10}, {"index": 45, "value": 2}, {"index": 46, "value": 3}, {"index": 47, "value": 39}, {"index": 48, "value": 27}, {"index": 49, "value": 1}, {"index": 50, "value": 5}, {"index": 51, "value": 1}, {"index": 52, "value": 29}, {"index": 53, "value": 30}, {"index": 54, "value": 4}, {"index": 55, "value": 1}, {"index": 56, "value": 8}, {"index": 57, "value": 18}, {"index": 58, "value": 23}], "out": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}], "outMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "inMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "in": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}]}, "degree": {"blt": [{"index": 0, "value": 53}, {"index": 1, "value": 6}, {"index": 2, "value": 10}, {"index": 3, "value": 12}, {"index": 4, "value": 12}, {"index": 5, "value": 15}, {"index": 6, "value": 29}, {"index": 7, "value": 34}, {"index": 8, "value": 11}, {"index": 9, "value": 26}, {"index": 10, "value": 25}, {"index": 11, "value": 3}, {"index": 12, "value": 2}, {"index": 13, "value": 6}, {"index": 14, "value": 67}, {"index": 15, "value": 73}, {"index": 16, "value": 11}, {"index": 17, "value": 2}, {"index": 18, "value": 5}, {"index": 19, "value": 20}, {"index": 20, "value": 20}, {"index": 21, "value": 15}, {"index": 22, "value": 9}, {"index": 23, "value": 13}, {"index": 24, "value": 16}, {"index": 25, "value": 9}, {"index": 26, "value": 30}, {"index": 27, "value": 18}, {"index": 28, "value": 11}, {"index": 29, "value": 9}, {"index": 30, "value": 57}, {"index": 31, "value": 30}, {"index": 32, "value": 16}, {"index": 33, "value": 26}, {"index": 34, "value": 20}, {"index": 35, "value": 16}, {"index": 36, "value": 35}, {"index": 37, "value": 25}, {"index": 38, "value": 11}, {"index": 39, "value": 12}, {"index": 40, "value": 33}, {"index": 41, "value": 26}, {"index": 42, "value": 9}, {"index": 43, "value": 2}, {"index": 44, "value": 20}, {"index": 45, "value": 3}, {"index": 46, "value": 6}, {"index": 47, "value": 77}, {"index": 48, "value": 56}, {"index": 49, "value": 2}, {"index": 50, "value": 9}, {"index": 51, "value": 2}, {"index": 52, "value": 62}, {"index": 53, "value": 56}, {"index": 54, "value": 18}, {"index": 55, "value": 2}, {"index": 56, "value": 11}, {"index": 57, "value": 44}, {"index": 58, "value": 42}], "out": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}], "outMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "inMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "in": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}]}, "hits_dir_no_self_authority": {"blt": [{"index": 0, "value": 0.034807000471229775}, {"index": 1, "value": 0.0067261388849519108}, {"index": 2, "value": 0.0080605774715590238}, {"index": 3, "value": 0.0088019635974495095}, {"index": 4, "value": 0.014362307559213404}, {"index": 5, "value": 0.015118298905182114}, {"index": 6, "value": 0.017809107559892436}, {"index": 7, "value": 0.023874565705707677}, {"index": 8, "value": 0.006567244711037255}, {"index": 9, "value": 0.027755798751925007}, {"index": 10, "value": 0.023464599150960108}, {"index": 11, "value": 0.00031566198787324557}, {"index": 12, "value": 0.0019462763555083305}, {"index": 13, "value": 0.0024931521341693013}, {"index": 14, "value": 0.040320037603504166}, {"index": 15, "value": 0.040999791004448491}, {"index": 16, "value": 0.0083347110472412021}, {"index": 17, "value": 0.00036606753374171915}, {"index": 18, "value": 0.00036716509660827376}, {"index": 19, "value": 0.022306324374917318}, {"index": 20, "value": 0.018384158856679662}, {"index": 21, "value": 0.0097585076766246916}, {"index": 22, "value": 0.0091828230320185091}, {"index": 23, "value": 0.0085830411839849467}, {"index": 24, "value": 0.0093318277590566413}, {"index": 25, "value": 0.0087822858145485388}, {"index": 26, "value": 0.02152909594218963}, {"index": 27, "value": 0.025522333803414673}, {"index": 28, "value": 0.016655733764200497}, {"index": 29, "value": 0.013466908476811743}, {"index": 30, "value": 0.037670567723415788}, {"index": 31, "value": 0.006308245268484669}, {"index": 32, "value": 0.010759075327522172}, {"index": 33, "value": 0.013852440996459802}, {"index": 34, "value": 0.018327279480757592}, {"index": 35, "value": 0.017469955009378636}, {"index": 36, "value": 0.032087192988862215}, {"index": 37, "value": 0.021953079860810024}, {"index": 38, "value": 0.010995583404680312}, {"index": 39, "value": 0.016011637905290605}, {"index": 40, "value": 0.033737021190899892}, {"index": 41, "value": 0.028739983706050253}, {"index": 42, "value": 0.0086144408057780598}, {"index": 43, "value": 0.0025488476960157836}, {"index": 44, "value": 0.018983172845171859}, {"index": 45, "value": 0.0020547307239323336}, {"index": 46, "value": 0.0051689632883944649}, {"index": 47, "value": 0.04280963942646434}, {"index": 48, "value": 0.041154321472088203}, {"index": 49, "value": 0.0019462763555083305}, {"index": 50, "value": 0.0087486963388520404}, {"index": 51, "value": 0.00048584032649191811}, {"index": 52, "value": 0.04040664076970546}, {"index": 53, "value": 0.039012944552668551}, {"index": 54, "value": 0.024801785433802456}, {"index": 55, "value": 0.00024129997496685074}, {"index": 56, "value": 0.005324980967025536}, {"index": 57, "value": 0.036739417093557741}, {"index": 58, "value": 0.027052432850313991}], "out": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}], "outMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "inMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "in": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}]}, "in_degree": {"blt": [{"index": 0, "value": 27}, {"index": 1, "value": 3}, {"index": 2, "value": 5}, {"index": 3, "value": 6}, {"index": 4, "value": 8}, {"index": 5, "value": 7}, {"index": 6, "value": 11}, {"index": 7, "value": 16}, {"index": 8, "value": 4}, {"index": 9, "value": 15}, {"index": 10, "value": 13}, {"index": 11, "value": 1}, {"index": 12, "value": 1}, {"index": 13, "value": 2}, {"index": 14, "value": 35}, {"index": 15, "value": 36}, {"index": 16, "value": 6}, {"index": 17, "value": 1}, {"index": 18, "value": 2}, {"index": 19, "value": 13}, {"index": 20, "value": 10}, {"index": 21, "value": 6}, {"index": 22, "value": 5}, {"index": 23, "value": 5}, {"index": 24, "value": 5}, {"index": 25, "value": 5}, {"index": 26, "value": 12}, {"index": 27, "value": 15}, {"index": 28, "value": 8}, {"index": 29, "value": 6}, {"index": 30, "value": 29}, {"index": 31, "value": 3}, {"index": 32, "value": 5}, {"index": 33, "value": 9}, {"index": 34, "value": 11}, {"index": 35, "value": 9}, {"index": 36, "value": 19}, {"index": 37, "value": 12}, {"index": 38, "value": 6}, {"index": 39, "value": 9}, {"index": 40, "value": 20}, {"index": 41, "value": 15}, {"index": 42, "value": 4}, {"index": 43, "value": 1}, {"index": 44, "value": 10}, {"index": 45, "value": 1}, {"index": 46, "value": 3}, {"index": 47, "value": 38}, {"index": 48, "value": 29}, {"index": 49, "value": 1}, {"index": 50, "value": 4}, {"index": 51, "value": 1}, {"index": 52, "value": 33}, {"index": 53, "value": 26}, {"index": 54, "value": 14}, {"index": 55, "value": 1}, {"index": 56, "value": 3}, {"index": 57, "value": 26}, {"index": 58, "value": 19}], "out": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}], "outMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "inMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "in": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}]}, "out_deg_cent": {"blt": [{"index": 0, "value": 0.46551724137931033}, {"index": 1, "value": 0.051724137931034482}, {"index": 2, "value": 0.086206896551724144}, {"index": 3, "value": 0.10344827586206896}, {"index": 4, "value": 0.086206896551724144}, {"index": 5, "value": 0.13793103448275862}, {"index": 6, "value": 0.32758620689655171}, {"index": 7, "value": 0.32758620689655171}, {"index": 8, "value": 0.12068965517241378}, {"index": 9, "value": 0.20689655172413793}, {"index": 10, "value": 0.22413793103448276}, {"index": 11, "value": 0.034482758620689655}, {"index": 12, "value": 0.017241379310344827}, {"index": 13, "value": 0.068965517241379309}, {"index": 14, "value": 0.56896551724137934}, {"index": 15, "value": 0.65517241379310343}, {"index": 16, "value": 0.086206896551724144}, {"index": 17, "value": 0.017241379310344827}, {"index": 18, "value": 0.051724137931034482}, {"index": 19, "value": 0.12068965517241378}, {"index": 20, "value": 0.17241379310344829}, {"index": 21, "value": 0.15517241379310345}, {"index": 22, "value": 0.068965517241379309}, {"index": 23, "value": 0.13793103448275862}, {"index": 24, "value": 0.20689655172413793}, {"index": 25, "value": 0.068965517241379309}, {"index": 26, "value": 0.32758620689655171}, {"index": 27, "value": 0.068965517241379309}, {"index": 28, "value": 0.051724137931034482}, {"index": 29, "value": 0.051724137931034482}, {"index": 30, "value": 0.5}, {"index": 31, "value": 0.48275862068965514}, {"index": 32, "value": 0.20689655172413793}, {"index": 33, "value": 0.29310344827586204}, {"index": 34, "value": 0.17241379310344829}, {"index": 35, "value": 0.13793103448275862}, {"index": 36, "value": 0.29310344827586204}, {"index": 37, "value": 0.24137931034482757}, {"index": 38, "value": 0.10344827586206896}, {"index": 39, "value": 0.051724137931034482}, {"index": 40, "value": 0.24137931034482757}, {"index": 41, "value": 0.20689655172413793}, {"index": 42, "value": 0.086206896551724144}, {"index": 43, "value": 0.017241379310344827}, {"index": 44, "value": 0.18965517241379309}, {"index": 45, "value": 0.034482758620689655}, {"index": 46, "value": 0.068965517241379309}, {"index": 47, "value": 0.68965517241379315}, {"index": 48, "value": 0.48275862068965514}, {"index": 49, "value": 0.017241379310344827}, {"index": 50, "value": 0.10344827586206896}, {"index": 51, "value": 0.017241379310344827}, {"index": 52, "value": 0.51724137931034486}, {"index": 53, "value": 0.53448275862068961}, {"index": 54, "value": 0.068965517241379309}, {"index": 55, "value": 0.017241379310344827}, {"index": 56, "value": 0.13793103448275862}, {"index": 57, "value": 0.32758620689655171}, {"index": 58, "value": 0.41379310344827586}], "out": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}], "outMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "inMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "in": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}]}, "closeness_cent_dir_unweighted": {"blt": [{"index": 0, "value": 0.61052631578947369}, {"index": 1, "value": 0.44274809160305345}, {"index": 2, "value": 0.43609022556390975}, {"index": 3, "value": 0.46400000000000002}, {"index": 4, "value": 0.41428571428571431}, {"index": 5, "value": 0.49572649572649574}, {"index": 6, "value": 0.56310679611650483}, {"index": 7, "value": 0.56310679611650483}, {"index": 8, "value": 0.47540983606557374}, {"index": 9, "value": 0.5178571428571429}, {"index": 10, "value": 0.52252252252252251}, {"index": 11, "value": 0.42028985507246375}, {"index": 12, "value": 0.4264705882352941}, {"index": 13, "value": 0.453125}, {"index": 14, "value": 0.66666666666666663}, {"index": 15, "value": 0.70731707317073167}, {"index": 16, "value": 0.46031746031746029}, {"index": 17, "value": 0.30851063829787234}, {"index": 18, "value": 0.43939393939393939}, {"index": 19, "value": 0.47933884297520662}, {"index": 20, "value": 0.5043478260869565}, {"index": 21, "value": 0.5}, {"index": 22, "value": 0.44961240310077522}, {"index": 23, "value": 0.5043478260869565}, {"index": 24, "value": 0.50877192982456143}, {"index": 25, "value": 0.44615384615384618}, {"index": 26, "value": 0.55769230769230771}, {"index": 27, "value": 0.43939393939393939}, {"index": 28, "value": 0.44274809160305345}, {"index": 29, "value": 0.44274809160305345}, {"index": 30, "value": 0.62365591397849462}, {"index": 31, "value": 0.63043478260869568}, {"index": 32, "value": 0.5178571428571429}, {"index": 33, "value": 0.54716981132075471}, {"index": 34, "value": 0.5178571428571429}, {"index": 35, "value": 0.5}, {"index": 36, "value": 0.55238095238095242}, {"index": 37, "value": 0.52252252252252251}, {"index": 38, "value": 0.44274809160305345}, {"index": 39, "value": 0.42962962962962964}, {"index": 40, "value": 0.51327433628318586}, {"index": 41, "value": 0.5043478260869565}, {"index": 42, "value": 0.47540983606557374}, {"index": 43, "value": 0.42335766423357662}, {"index": 44, "value": 0.5}, {"index": 45, "value": 0.36708860759493672}, {"index": 46, "value": 0.45669291338582679}, {"index": 47, "value": 0.72499999999999998}, {"index": 48, "value": 0.63043478260869568}, {"index": 49, "value": 0.39455782312925169}, {"index": 50, "value": 0.46400000000000002}, {"index": 51, "value": 0.4264705882352941}, {"index": 52, "value": 0.63736263736263732}, {"index": 53, "value": 0.65909090909090906}, {"index": 54, "value": 0.47933884297520662}, {"index": 55, "value": 0.40845070422535212}, {"index": 56, "value": 0.48739495798319327}, {"index": 57, "value": 0.55238095238095242}, {"index": 58, "value": 0.57999999999999996}], "out": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}], "outMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "inMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "in": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}]}, "closeness_cent_dir_weighted": {"blt": [{"index": 0, "value": 0.68209681075818906}, {"index": 1, "value": 0.60147777052716633}, {"index": 2, "value": 0.52665599523150619}, {"index": 3, "value": 0.562263522519443}, {"index": 4, "value": 0.55081448174496128}, {"index": 5, "value": 0.60760243610921605}, {"index": 6, "value": 0.68363059015651806}, {"index": 7, "value": 0.71415772161549929}, {"index": 8, "value": 0.56770026706388255}, {"index": 9, "value": 0.6897786613095912}, {"index": 10, "value": 0.6972237815453135}, {"index": 11, "value": 0.63938615510420771}, {"index": 12, "value": 0.80949146896073121}, {"index": 13, "value": 0.67504401382573853}, {"index": 14, "value": 0.72705339486968701}, {"index": 15, "value": 0.77385043170397738}, {"index": 16, "value": 0.52890652727392806}, {"index": 17, "value": 0.55986083161137168}, {"index": 18, "value": 0.55192856591953743}, {"index": 19, "value": 0.55477887085993804}, {"index": 20, "value": 0.6228629747457255}, {"index": 21, "value": 0.60665215284888174}, {"index": 22, "value": 0.56902695730879393}, {"index": 23, "value": 0.60199060878513899}, {"index": 24, "value": 0.59821453355633891}, {"index": 25, "value": 0.54250683559602064}, {"index": 26, "value": 0.65167775899764246}, {"index": 27, "value": 0.67623395336897441}, {"index": 28, "value": 0.68627735822464253}, {"index": 29, "value": 0.59510904995367253}, {"index": 30, "value": 0.68708375231565177}, {"index": 31, "value": 0.69237413395042402}, {"index": 32, "value": 0.64830971438699081}, {"index": 33, "value": 0.68320276859757301}, {"index": 34, "value": 0.58888963329242638}, {"index": 35, "value": 0.66711882348272822}, {"index": 36, "value": 0.68931528565627531}, {"index": 37, "value": 0.59662172136405922}, {"index": 38, "value": 0.55481819657477516}, {"index": 39, "value": 0.65034152380676857}, {"index": 40, "value": 0.67032036869759615}, {"index": 41, "value": 0.68002593815360801}, {"index": 42, "value": 0.62073807898449085}, {"index": 43, "value": 0.79851703737836099}, {"index": 44, "value": 0.6008652311685877}, {"index": 45, "value": 0.54374342755458016}, {"index": 46, "value": 0.60513608097760851}, {"index": 47, "value": 0.78767968974216984}, {"index": 48, "value": 0.70997785641054145}, {"index": 49, "value": 0.72791598635106014}, {"index": 50, "value": 0.59249203112782056}, {"index": 51, "value": 0.80856708278997669}, {"index": 52, "value": 0.71108846574642703}, {"index": 53, "value": 0.73747904291827382}, {"index": 54, "value": 0.58647402271518922}, {"index": 55, "value": 0.75238156023107439}, {"index": 56, "value": 0.58081535033944576}, {"index": 57, "value": 0.62657715228292654}, {"index": 58, "value": 0.63759402163204038}], "out": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}], "outMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "inMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "in": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}]}, "betweenness_cent_dir_unweighted": {"blt": [{"index": 0, "value": 0.039586607527776971}, {"index": 1, "value": 0.017241379310344827}, {"index": 2, "value": 0.00034827250117631248}, {"index": 3, "value": 0.00096236215216135537}, {"index": 4, "value": 0.00091239942419615741}, {"index": 5, "value": 0.00032453224078367689}, {"index": 6, "value": 0.0055622235053219048}, {"index": 7, "value": 0.018147800720823129}, {"index": 8, "value": 0.00086555727169050547}, {"index": 9, "value": 0.00099467994224722387}, {"index": 10, "value": 0.0015373974619690288}, {"index": 11, "value": 0.00038818310143174029}, {"index": 12, "value": 0.0}, {"index": 13, "value": 0.017266586005242994}, {"index": 14, "value": 0.12137421905142373}, {"index": 15, "value": 0.12273152027948984}, {"index": 16, "value": 0.034742839193691019}, {"index": 17, "value": 0.0}, {"index": 18, "value": 0.017241379310344827}, {"index": 19, "value": 0.0016392911767548191}, {"index": 20, "value": 0.00095883224691546232}, {"index": 21, "value": 0.0025781144246105315}, {"index": 22, "value": 0.00039996804969581745}, {"index": 23, "value": 0.0034903676281523004}, {"index": 24, "value": 0.00045143084623905654}, {"index": 25, "value": 0.00043328331534267267}, {"index": 26, "value": 0.0078854076161941223}, {"index": 27, "value": 0.0026631667635862188}, {"index": 28, "value": 6.0129424920713483e-05}, {"index": 29, "value": 0.0}, {"index": 30, "value": 0.062215156757582525}, {"index": 31, "value": 0.0071310505187413484}, {"index": 32, "value": 0.00022266003123465558}, {"index": 33, "value": 0.0054370733840764076}, {"index": 34, "value": 0.0062240470516039511}, {"index": 35, "value": 0.00058767685135983493}, {"index": 36, "value": 0.0054850627148667749}, {"index": 37, "value": 0.0064329308898515144}, {"index": 38, "value": 0.00040068392515683307}, {"index": 39, "value": 0.00047518226979193092}, {"index": 40, "value": 0.0061266854916089174}, {"index": 41, "value": 0.0010656671561472676}, {"index": 42, "value": 3.031772980839195e-05}, {"index": 43, "value": 0.0}, {"index": 44, "value": 0.0033149675040917924}, {"index": 45, "value": 0.0}, {"index": 46, "value": 0.0}, {"index": 47, "value": 0.19508770508993606}, {"index": 48, "value": 0.068532075397568601}, {"index": 49, "value": 0.0}, {"index": 50, "value": 0.017241379310344827}, {"index": 51, "value": 0.0}, {"index": 52, "value": 0.093575939338763472}, {"index": 53, "value": 0.090901771775925358}, {"index": 54, "value": 0.028646911149845685}, {"index": 55, "value": 0.00028602841669992307}, {"index": 56, "value": 0.00015452018494614843}, {"index": 57, "value": 0.033890701312535902}, {"index": 58, "value": 0.026205645369927512}], "out": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}], "outMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "inMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "in": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}]}, "deg_central": {"blt": [{"index": 0, "value": 0.94827586206896552}, {"index": 1, "value": 0.10344827586206896}, {"index": 2, "value": 0.17241379310344829}, {"index": 3, "value": 0.20689655172413793}, {"index": 4, "value": 0.24137931034482757}, {"index": 5, "value": 0.25862068965517243}, {"index": 6, "value": 0.53448275862068961}, {"index": 7, "value": 0.62068965517241381}, {"index": 8, "value": 0.18965517241379309}, {"index": 9, "value": 0.48275862068965514}, {"index": 10, "value": 0.46551724137931033}, {"index": 11, "value": 0.051724137931034482}, {"index": 12, "value": 0.034482758620689655}, {"index": 13, "value": 0.10344827586206896}, {"index": 14, "value": 1.1896551724137931}, {"index": 15, "value": 1.2931034482758621}, {"index": 16, "value": 0.18965517241379309}, {"index": 17, "value": 0.034482758620689655}, {"index": 18, "value": 0.086206896551724144}, {"index": 19, "value": 0.34482758620689657}, {"index": 20, "value": 0.34482758620689657}, {"index": 21, "value": 0.25862068965517243}, {"index": 22, "value": 0.15517241379310345}, {"index": 23, "value": 0.22413793103448276}, {"index": 24, "value": 0.31034482758620691}, {"index": 25, "value": 0.15517241379310345}, {"index": 26, "value": 0.55172413793103448}, {"index": 27, "value": 0.34482758620689657}, {"index": 28, "value": 0.18965517241379309}, {"index": 29, "value": 0.15517241379310345}, {"index": 30, "value": 1.0172413793103448}, {"index": 31, "value": 0.55172413793103448}, {"index": 32, "value": 0.31034482758620691}, {"index": 33, "value": 0.44827586206896552}, {"index": 34, "value": 0.37931034482758619}, {"index": 35, "value": 0.31034482758620691}, {"index": 36, "value": 0.63793103448275856}, {"index": 37, "value": 0.46551724137931033}, {"index": 38, "value": 0.22413793103448276}, {"index": 39, "value": 0.20689655172413793}, {"index": 40, "value": 0.60344827586206895}, {"index": 41, "value": 0.48275862068965514}, {"index": 42, "value": 0.15517241379310345}, {"index": 43, "value": 0.034482758620689655}, {"index": 44, "value": 0.37931034482758619}, {"index": 45, "value": 0.051724137931034482}, {"index": 46, "value": 0.13793103448275862}, {"index": 47, "value": 1.3620689655172413}, {"index": 48, "value": 1.0}, {"index": 49, "value": 0.034482758620689655}, {"index": 50, "value": 0.18965517241379309}, {"index": 51, "value": 0.034482758620689655}, {"index": 52, "value": 1.103448275862069}, {"index": 53, "value": 1.0}, {"index": 54, "value": 0.31034482758620691}, {"index": 55, "value": 0.034482758620689655}, {"index": 56, "value": 0.18965517241379309}, {"index": 57, "value": 0.7931034482758621}, {"index": 58, "value": 0.75862068965517238}], "out": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}], "outMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "inMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "in": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}]}, "hits_dir_no_self_hubs": {"blt": [{"index": 0, "value": 0.036290676524325827}, {"index": 1, "value": 0.0044274457772428858}, {"index": 2, "value": 0.0074013863324514676}, {"index": 3, "value": 0.0095005202037142088}, {"index": 4, "value": 0.005062575841049465}, {"index": 5, "value": 0.015337641510823114}, {"index": 6, "value": 0.029964004099000893}, {"index": 7, "value": 0.028112095190522997}, {"index": 8, "value": 0.012120573179418075}, {"index": 9, "value": 0.02095687114924151}, {"index": 10, "value": 0.020174461657810221}, {"index": 11, "value": 0.0034155810610263155}, {"index": 12, "value": 0.0023480403681121111}, {"index": 13, "value": 0.0057918627447885885}, {"index": 14, "value": 0.039417858040549342}, {"index": 15, "value": 0.043251670006758884}, {"index": 16, "value": 0.0067167191229372813}, {"index": 17, "value": 2.0138419294068151e-05}, {"index": 18, "value": 0.0048848750048125014}, {"index": 19, "value": 0.01182266162645243}, {"index": 20, "value": 0.017954825471349568}, {"index": 21, "value": 0.014647570118435219}, {"index": 22, "value": 0.0072117410485101341}, {"index": 23, "value": 0.013114923863841655}, {"index": 24, "value": 0.01972408939472256}, {"index": 25, "value": 0.0069646660070916333}, {"index": 26, "value": 0.028893561743410689}, {"index": 27, "value": 0.0054957800995320688}, {"index": 28, "value": 0.0063233192581843116}, {"index": 29, "value": 0.0066714596802727073}, {"index": 30, "value": 0.040085015280434726}, {"index": 31, "value": 0.038945388908837995}, {"index": 32, "value": 0.022295608649968591}, {"index": 33, "value": 0.02862383039099075}, {"index": 34, "value": 0.01654762765240558}, {"index": 35, "value": 0.01406796931320644}, {"index": 36, "value": 0.02867227797012098}, {"index": 37, "value": 0.02216065727442363}, {"index": 38, "value": 0.0079977279711290119}, {"index": 39, "value": 0.0052200470256206985}, {"index": 40, "value": 0.020284449242723511}, {"index": 41, "value": 0.020524280298622303}, {"index": 42, "value": 0.010825483246340596}, {"index": 43, "value": 0.0023480403681121111}, {"index": 44, "value": 0.017055876756525108}, {"index": 45, "value": 0.0034149576229566903}, {"index": 46, "value": 0.006521120258848421}, {"index": 47, "value": 0.046767037468487829}, {"index": 48, "value": 0.037700828064083473}, {"index": 49, "value": 0.0022162397286724575}, {"index": 50, "value": 0.0089143469751088392}, {"index": 51, "value": 0.0023480403681121111}, {"index": 52, "value": 0.04034501784505494}, {"index": 53, "value": 0.03571087412483849}, {"index": 54, "value": 0.0067997293445894429}, {"index": 55, "value": 0.0022114896832861547}, {"index": 56, "value": 0.015382937537136787}, {"index": 57, "value": 0.029615980398234123}, {"index": 58, "value": 0.032377525685445191}], "out": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}], "outMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "inMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "in": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}]}, "eig_centr_dir_unweighted_no_self": {"blt": [{"index": 0, "value": 0.20808774613955555}, {"index": 1, "value": 0.032797273182814855}, {"index": 2, "value": 0.045708493509411509}, {"index": 3, "value": 0.052983317521612193}, {"index": 4, "value": 0.085875262148564335}, {"index": 5, "value": 0.083192875297615099}, {"index": 6, "value": 0.11166018140413998}, {"index": 7, "value": 0.14133037487524228}, {"index": 8, "value": 0.042254612386676577}, {"index": 9, "value": 0.16732754766501134}, {"index": 10, "value": 0.14970133389808971}, {"index": 11, "value": 0.00066282627110312447}, {"index": 12, "value": 0.013418028931772427}, {"index": 13, "value": 0.0113492111450089}, {"index": 14, "value": 0.24538709104910342}, {"index": 15, "value": 0.27061883806816062}, {"index": 16, "value": 0.053877218201607312}, {"index": 17, "value": 0.0031465830692282391}, {"index": 18, "value": 0.0033303524868418979}, {"index": 19, "value": 0.13540851054699909}, {"index": 20, "value": 0.1080560970723547}, {"index": 21, "value": 0.063527059954886861}, {"index": 22, "value": 0.057146920118799314}, {"index": 23, "value": 0.052858198274703325}, {"index": 24, "value": 0.060525454248315159}, {"index": 25, "value": 0.055518503528215142}, {"index": 26, "value": 0.14881436834886216}, {"index": 27, "value": 0.14972915340039802}, {"index": 28, "value": 0.097897834846136164}, {"index": 29, "value": 0.076353823232733709}, {"index": 30, "value": 0.24319766717637359}, {"index": 31, "value": 0.038854341888261097}, {"index": 32, "value": 0.060026886633921417}, {"index": 33, "value": 0.10113724353895699}, {"index": 34, "value": 0.12056605451435329}, {"index": 35, "value": 0.094602077532087492}, {"index": 36, "value": 0.20257064930918761}, {"index": 37, "value": 0.13834011397737736}, {"index": 38, "value": 0.075846936358439518}, {"index": 39, "value": 0.097582857306511894}, {"index": 40, "value": 0.20427331215311267}, {"index": 41, "value": 0.1702626937814265}, {"index": 42, "value": 0.052002641820927682}, {"index": 43, "value": 0.015959721952582964}, {"index": 44, "value": 0.12007032243463911}, {"index": 45, "value": 0.014568346946259421}, {"index": 46, "value": 0.035784232692722989}, {"index": 47, "value": 0.27326957628587129}, {"index": 48, "value": 0.24944582424542622}, {"index": 49, "value": 0.013418028931772416}, {"index": 50, "value": 0.057494299824355881}, {"index": 51, "value": 0.0033578309430803456}, {"index": 52, "value": 0.23197844105710422}, {"index": 53, "value": 0.22974955902559319}, {"index": 54, "value": 0.15547198346940214}, {"index": 55, "value": 0.0019154542116062605}, {"index": 56, "value": 0.035397470463883994}, {"index": 57, "value": 0.22007194073496039}, {"index": 58, "value": 0.156269996319159}], "out": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}], "outMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "inMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "in": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}]}, "betweenness_cent_dir_weighted": {"blt": [{"index": 0, "value": 0.045372050816696916}, {"index": 1, "value": 0.017241379310344827}, {"index": 2, "value": 0.0015124016938898974}, {"index": 3, "value": 0.0024198427102238356}, {"index": 4, "value": 0.0018148820326678767}, {"index": 5, "value": 0.00090744101633393837}, {"index": 6, "value": 0.00090744101633393837}, {"index": 7, "value": 0.0024198427102238356}, {"index": 8, "value": 0.0024198427102238356}, {"index": 9, "value": 0.0}, {"index": 10, "value": 0.0}, {"index": 11, "value": 0.0}, {"index": 12, "value": 0.0}, {"index": 13, "value": 0.028130671506352088}, {"index": 14, "value": 0.084694494857834243}, {"index": 15, "value": 0.13793103448275862}, {"index": 16, "value": 0.034180278281911676}, {"index": 17, "value": 0.0}, {"index": 18, "value": 0.017241379310344827}, {"index": 19, "value": 0.0039322444041137326}, {"index": 20, "value": 0.00090744101633393837}, {"index": 21, "value": 0.00060496067755595891}, {"index": 22, "value": 0.00030248033877797946}, {"index": 23, "value": 0.0054446460980036304}, {"index": 24, "value": 0.0021173623714458561}, {"index": 25, "value": 0.0015124016938898974}, {"index": 26, "value": 0.0}, {"index": 27, "value": 0.0051421657592256509}, {"index": 28, "value": 0.00060496067755595891}, {"index": 29, "value": 0.0}, {"index": 30, "value": 0.086811857229280101}, {"index": 31, "value": 0.0060496067755595895}, {"index": 32, "value": 0.0}, {"index": 33, "value": 0.028130671506352088}, {"index": 34, "value": 0.0027223230490018152}, {"index": 35, "value": 0.0}, {"index": 36, "value": 0.0}, {"index": 37, "value": 0.0012099213551119178}, {"index": 38, "value": 0.0}, {"index": 39, "value": 0.0018148820326678767}, {"index": 40, "value": 0.0096793708408953426}, {"index": 41, "value": 0.0}, {"index": 42, "value": 0.0}, {"index": 43, "value": 0.0}, {"index": 44, "value": 0.00030248033877797946}, {"index": 45, "value": 0.0}, {"index": 46, "value": 0.0}, {"index": 47, "value": 0.25771324863883849}, {"index": 48, "value": 0.052026618269812468}, {"index": 49, "value": 0.0}, {"index": 50, "value": 0.017241379310344827}, {"index": 51, "value": 0.0}, {"index": 52, "value": 0.10344827586206898}, {"index": 53, "value": 0.075015124016938911}, {"index": 54, "value": 0.033575317604355719}, {"index": 55, "value": 0.0021173623714458561}, {"index": 56, "value": 0.0}, {"index": 57, "value": 0.028130671506352088}, {"index": 58, "value": 0.01149425287356322}], "out": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}], "outMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "inMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "in": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}]}, "in_deg_cent": {"blt": [{"index": 0, "value": 0.48275862068965514}, {"index": 1, "value": 0.051724137931034482}, {"index": 2, "value": 0.086206896551724144}, {"index": 3, "value": 0.10344827586206896}, {"index": 4, "value": 0.15517241379310345}, {"index": 5, "value": 0.12068965517241378}, {"index": 6, "value": 0.20689655172413793}, {"index": 7, "value": 0.29310344827586204}, {"index": 8, "value": 0.068965517241379309}, {"index": 9, "value": 0.27586206896551724}, {"index": 10, "value": 0.24137931034482757}, {"index": 11, "value": 0.017241379310344827}, {"index": 12, "value": 0.017241379310344827}, {"index": 13, "value": 0.034482758620689655}, {"index": 14, "value": 0.62068965517241381}, {"index": 15, "value": 0.63793103448275856}, {"index": 16, "value": 0.10344827586206896}, {"index": 17, "value": 0.017241379310344827}, {"index": 18, "value": 0.034482758620689655}, {"index": 19, "value": 0.22413793103448276}, {"index": 20, "value": 0.17241379310344829}, {"index": 21, "value": 0.10344827586206896}, {"index": 22, "value": 0.086206896551724144}, {"index": 23, "value": 0.086206896551724144}, {"index": 24, "value": 0.10344827586206896}, {"index": 25, "value": 0.086206896551724144}, {"index": 26, "value": 0.22413793103448276}, {"index": 27, "value": 0.27586206896551724}, {"index": 28, "value": 0.13793103448275862}, {"index": 29, "value": 0.10344827586206896}, {"index": 30, "value": 0.51724137931034486}, {"index": 31, "value": 0.068965517241379309}, {"index": 32, "value": 0.10344827586206896}, {"index": 33, "value": 0.15517241379310345}, {"index": 34, "value": 0.20689655172413793}, {"index": 35, "value": 0.17241379310344829}, {"index": 36, "value": 0.34482758620689657}, {"index": 37, "value": 0.22413793103448276}, {"index": 38, "value": 0.12068965517241378}, {"index": 39, "value": 0.15517241379310345}, {"index": 40, "value": 0.36206896551724138}, {"index": 41, "value": 0.27586206896551724}, {"index": 42, "value": 0.068965517241379309}, {"index": 43, "value": 0.017241379310344827}, {"index": 44, "value": 0.18965517241379309}, {"index": 45, "value": 0.017241379310344827}, {"index": 46, "value": 0.068965517241379309}, {"index": 47, "value": 0.67241379310344829}, {"index": 48, "value": 0.51724137931034486}, {"index": 49, "value": 0.017241379310344827}, {"index": 50, "value": 0.086206896551724144}, {"index": 51, "value": 0.017241379310344827}, {"index": 52, "value": 0.58620689655172409}, {"index": 53, "value": 0.46551724137931033}, {"index": 54, "value": 0.24137931034482757}, {"index": 55, "value": 0.017241379310344827}, {"index": 56, "value": 0.051724137931034482}, {"index": 57, "value": 0.46551724137931033}, {"index": 58, "value": 0.34482758620689657}], "out": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}], "outMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "inMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "in": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}]}, "eig_centr_dir_weighted_no_self": {"blt": [{"index": 0, "value": 0.20335572488474915}, {"index": 1, "value": 0.031799542995444213}, {"index": 2, "value": 0.050025000228417542}, {"index": 3, "value": 0.056798482353323812}, {"index": 4, "value": 0.087875156482561528}, {"index": 5, "value": 0.083950522385806928}, {"index": 6, "value": 0.11348111280531568}, {"index": 7, "value": 0.14599544865379643}, {"index": 8, "value": 0.039320367465667312}, {"index": 9, "value": 0.17532630449562653}, {"index": 10, "value": 0.15687206385054681}, {"index": 11, "value": 0.00034681868175957451}, {"index": 12, "value": 0.015030966960769649}, {"index": 13, "value": 0.0056938885949852193}, {"index": 14, "value": 0.24691168940885444}, {"index": 15, "value": 0.26195964840160202}, {"index": 16, "value": 0.058360600769280742}, {"index": 17, "value": 0.0032987010749693868}, {"index": 18, "value": 0.0020616881718558511}, {"index": 19, "value": 0.13552264486837029}, {"index": 20, "value": 0.11059594245000602}, {"index": 21, "value": 0.067514055133207698}, {"index": 22, "value": 0.058861095321723088}, {"index": 23, "value": 0.051271239879067509}, {"index": 24, "value": 0.053875770950645219}, {"index": 25, "value": 0.060476529221952194}, {"index": 26, "value": 0.15588104149507248}, {"index": 27, "value": 0.15460203288227875}, {"index": 28, "value": 0.10144593489798509}, {"index": 29, "value": 0.077069430374854295}, {"index": 30, "value": 0.22310885959860369}, {"index": 31, "value": 0.028028699329471884}, {"index": 32, "value": 0.060840998673846229}, {"index": 33, "value": 0.089395030270479389}, {"index": 34, "value": 0.12969647436175488}, {"index": 35, "value": 0.097359133880038279}, {"index": 36, "value": 0.21388391243002486}, {"index": 37, "value": 0.14553942668511985}, {"index": 38, "value": 0.082053313479148543}, {"index": 39, "value": 0.10043052018407897}, {"index": 40, "value": 0.20955427079887307}, {"index": 41, "value": 0.17760220820433506}, {"index": 42, "value": 0.051969121499622621}, {"index": 43, "value": 0.01407810309210422}, {"index": 44, "value": 0.125640083683972}, {"index": 45, "value": 0.015926055159490041}, {"index": 46, "value": 0.037766725952210999}, {"index": 47, "value": 0.2215395384174377}, {"index": 48, "value": 0.25151338144194874}, {"index": 49, "value": 0.014962953535607781}, {"index": 50, "value": 0.059138453651785813}, {"index": 51, "value": 0.0034023579415608037}, {"index": 52, "value": 0.22972664625360228}, {"index": 53, "value": 0.23691504805304814}, {"index": 54, "value": 0.16481688513282905}, {"index": 55, "value": 0.0016850599753928223}, {"index": 56, "value": 0.037806293358768665}, {"index": 57, "value": 0.22902122683508383}, {"index": 58, "value": 0.16246796201669442}], "out": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}], "outMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "inMatrix": [[0.0, 0.0, 0.0, 0.0, 59.0, 51.0, 3.0, 6.0, 50.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 1.0, 3.0, 22.0, 10.0, 0.0, 0.0, 4.0, 0.0, 0.0, 28.0, 44.0, 0.0, 0.0, 0.0, 26.0, 88.0, 2.0, 0.0, 0.0, 81.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [5.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0], [52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0], [12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0], [16.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 14.0, 14.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 4.0, 0.0, 0.0, 0.0, 3.0, 3.0, 1.0, 0.0, 0.0, 0.0, 3.0], [6.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 146.0, 7.0, 0.0, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0], [28.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 5.0, 8.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 14.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 64.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 12.0, 0.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 105.0, 11.0, 2.0, 0.0, 1.0, 32.0, 1.0, 3.0, 10.0, 0.0, 0.0, 53.0, 0.0, 3.0, 5.0, 2.0, 6.0, 29.0, 11.0, 1.0, 0.0, 49.0, 31.0, 1.0, 0.0, 1.0, 0.0, 0.0, 90.0, 45.0, 0.0, 0.0, 0.0, 23.0, 39.0, 4.0, 0.0, 0.0, 10.0, 0.0], [0.0, 0.0, 0.0, 1.0, 5.0, 4.0, 28.0, 49.0, 0.0, 36.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 289.0, 90.0, 1.0, 1.0, 0.0, 122.0, 1.0, 12.0, 13.0, 4.0, 1.0, 100.0, 0.0, 3.0, 4.0, 7.0, 18.0, 55.0, 16.0, 4.0, 6.0, 56.0, 76.0, 6.0, 0.0, 2.0, 0.0, 0.0, 124.0, 89.0, 0.0, 0.0, 0.0, 21.0, 103.0, 7.0, 0.0, 0.0, 20.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 382.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 18.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 190.0, 0.0, 0.0, 0.0, 71.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 1.0, 0.0, 158.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 11.0, 1.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 294.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 39.0, 83.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 224.0, 128.0, 1.0, 19.0, 0.0, 1655.0, 3.0, 0.0, 1.0, 0.0, 8.0, 2.0, 0.0, 2.0, 20.0, 12.0, 0.0, 0.0, 2.0, 0.0, 1.0, 11.0, 43.0, 0.0, 0.0, 0.0, 6.0, 28.0, 4.0, 0.0, 0.0, 3.0, 3.0], [43.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 34.0, 80.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 2.0, 6.0, 1116.0, 0.0, 6.0, 0.0, 2.0, 1.0, 11.0, 1.0, 0.0, 1.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 110.0, 83.0, 0.0, 0.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 7.0, 11.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 65.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 19.0, 34.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 0.0, 0.0, 0.0, 2.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 199.0, 31.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 19.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 8.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0], [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 6.0, 9.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 278.0, 3.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 149.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], [108.0, 3.0, 0.0, 0.0, 8.0, 4.0, 35.0, 15.0, 2.0, 55.0, 38.0, 0.0, 0.0, 0.0, 206.0, 496.0, 0.0, 0.0, 0.0, 44.0, 11.0, 0.0, 3.0, 1.0, 5.0, 0.0, 13.0, 24.0, 5.0, 1.0, 154.0, 1.0, 0.0, 5.0, 0.0, 2.0, 50.0, 2.0, 0.0, 9.0, 84.0, 45.0, 5.0, 1.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 4.0, 0.0, 23.0, 21.0, 3.0, 0.0, 0.0, 16.0, 25.0], [68.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 2.0, 0.0, 0.0, 0.0, 38.0, 106.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 13.0, 3.0, 2.0, 97.0, 0.0, 0.0, 0.0, 1.0, 3.0, 10.0, 0.0, 0.0, 0.0, 21.0, 15.0, 0.0, 0.0, 10.0, 2.0, 3.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0, 24.0, 3.0, 0.0, 0.0, 14.0, 15.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 7.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [83.0, 0.0, 1.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 35.0, 92.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 13.0, 1.0, 1.0, 66.0, 0.0, 0.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 0.0, 5.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0, 22.0, 0.0, 1.0, 0.0, 0.0, 45.0, 3.0, 0.0, 0.0, 7.0, 8.0], [26.0, 0.0, 2.0, 10.0, 1.0, 0.0, 5.0, 6.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 9.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 13.0, 7.0, 18.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0, 32.0, 0.0, 71.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 3.0, 14.0, 0.0, 151.0, 0.0, 3.0, 0.0, 1.0, 12.0, 6.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 5.0, 4.0], [75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 8.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 24.0, 0.0, 0.0, 0.0, 7.0, 6.0, 0.0, 0.0, 29.0, 0.0, 17.0], [12.0, 0.0, 1.0, 2.0, 13.0, 8.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 9.0, 0.0, 0.0, 0.0, 11.0, 12.0, 0.0, 0.0, 1.0, 16.0, 0.0]], "in": [{"action": "mouseover", "index": 0, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 1, "name": "chart_group,linechart,linechart,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 2, "name": "chart_group,linechart,linechart-aggregation,COMBOBOX,click,SELECT,-,options,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 3, "name": "chart_group,linechart,linechart-trendline-hide,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "click", "index": 4, "name": "chart_group,linechart,linechart-trendline-show,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart", "elementGroup": "chart_group"}, {"action": "drag", "index": 5, "name": "chart_group,linechart-brush,linechart-brush,CANVAS,drag,SELECT,-,linechart;brush,USER", "elementId": "linechart-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 6, "name": "chart_group,linechart-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "linechart-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 7, "name": "chart_group,linechart-day,linechart-day,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-day", "elementGroup": "chart_group"}, {"action": "click", "index": 8, "name": "chart_group,linechart-hour,linechart-hour,BUTTON,click,ALTER,-,linechart,USER", "elementId": "linechart-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 9, "name": "chart_group,linechart-range,date-range,CANVAS,click,SELECT,-,filter,USER", "elementId": "linechart-range", "elementGroup": "chart_group"}, {"action": "click", "index": 10, "name": "chart_group,tag-cloud,-,TAG,click,ADD,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 11, "name": "chart_group,tag-cloud,-,TAG,click,REMOVE,-,filter,USER", "elementId": "tag-cloud", "elementGroup": "chart_group"}, {"action": "click", "index": 12, "name": "chart_group,tag-cloud-options,all-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 13, "name": "chart_group,tag-cloud-options,any-filters,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "click", "index": 14, "name": "chart_group,tag-cloud-options,remove-translation,BUTTON,click,SELECT,-,options,USER", "elementId": "tag-cloud-options", "elementGroup": "chart_group"}, {"action": "mouseover", "index": 15, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "mouseover_INTERVAL", "index": 16, "name": "chart_group,timeline,timeline,TOOLTIP,mouseover_INTERVAL,SHOW,-,tooltip,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 17, "name": "chart_group,timeline,timeline-showFocus-always,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 18, "name": "chart_group,timeline,timeline-showFocus-never,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "click", "index": 19, "name": "chart_group,timeline,timeline-showFocus-on_filter,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline", "elementGroup": "chart_group"}, {"action": "drag", "index": 20, "name": "chart_group,timeline-brush,timeline-brush,CANVAS,drag,SELECT,-,timeline;brush,USER", "elementId": "timeline-brush", "elementGroup": "chart_group"}, {"action": "click", "index": 21, "name": "chart_group,timeline-clear-range,-,BUTTON,click,DESELECT,-,filter,USER", "elementId": "timeline-clear-range", "elementGroup": "chart_group"}, {"action": "click", "index": 22, "name": "chart_group,timeline-day,timeline-day,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-day", "elementGroup": "chart_group"}, {"action": "click", "index": 23, "name": "chart_group,timeline-hour,timeline-hour,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-hour", "elementGroup": "chart_group"}, {"action": "click", "index": 24, "name": "chart_group,timeline-month,timeline-month,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-month", "elementGroup": "chart_group"}, {"action": "click", "index": 25, "name": "chart_group,timeline-range,date-range,CANVAS,click,SELECT,-,timeline,USER", "elementId": "timeline-range", "elementGroup": "chart_group"}, {"action": "click", "index": 26, "name": "chart_group,timeline-year,timeline-year,BUTTON,click,ALTER,-,timeline,USER", "elementId": "timeline-year", "elementGroup": "chart_group"}, {"action": "click", "index": 27, "name": "map_group,map,-,TOOLTIP,click,HIDE,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 28, "name": "map_group,map,-,TOOLTIP,click,SHOW,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 29, "name": "map_group,map,geo-filter,BUTTON,click,DESELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "drag", "index": 30, "name": "map_group,map,geo-filter,CANVAS,drag,SELECT,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "panstart", "index": 31, "name": "map_group,map,map-viewport,CANVAS,panstart,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "zoom", "index": 32, "name": "map_group,map,map-viewport,CANVAS,zoom,ALTER,-,map,USER", "elementId": "map", "elementGroup": "map_group"}, {"action": "click", "index": 33, "name": "map_group,map-layer-active-button,-,BUTTON,click,ALTER,-,options,USER", "elementId": "map-layer-active-button", "elementGroup": "map_group"}, {"action": "click", "index": 34, "name": "query_group,filter-builder-add-filter,-,BUTTON,click,ADD,-,filter-builder,USER", "elementId": "filter-builder-add-filter", "elementGroup": "query_group"}, {"action": "click", "index": 35, "name": "query_group,filter-builder-and-clauses,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-and-clauses", "elementGroup": "query_group"}, {"action": "click", "index": 36, "name": "query_group,filter-builder-clear-all,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-clear-all", "elementGroup": "query_group"}, {"action": "click", "index": 37, "name": "query_group,filter-builder-remove-filter,-,BUTTON,click,REMOVE,-,filter-builder,USER", "elementId": "filter-builder-remove-filter", "elementGroup": "query_group"}, {"action": "click", "index": 38, "name": "query_group,filter-builder-selected-field,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selected-field", "elementGroup": "query_group"}, {"action": "click", "index": 39, "name": "query_group,filter-builder-selectedOperator,-,COMBOBOX,click,SELECT,-,filter-builder,USER", "elementId": "filter-builder-selectedOperator", "elementGroup": "query_group"}, {"action": "keydown", "index": 40, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "keydown_INTERVAL", "index": 41, "name": "query_group,filter-builder-selectedValue,-,TEXTBOX,keydown_INTERVAL,ENTER,-,filter-builder,USER", "elementId": "filter-builder-selectedValue", "elementGroup": "query_group"}, {"action": "click", "index": 42, "name": "query_group,filter-builder-update-filter-0,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-0", "elementGroup": "query_group"}, {"action": "click", "index": 43, "name": "query_group,filter-builder-update-filter-1,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-1", "elementGroup": "query_group"}, {"action": "click", "index": 44, "name": "query_group,filter-builder-update-filter-2,-,BUTTON,click,ALTER,-,filter-builder,USER", "elementId": "filter-builder-update-filter-2", "elementGroup": "query_group"}, {"action": "click", "index": 45, "name": "table_group,datagrid,-,DATAGRID,click,ALTER,-,sort-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 46, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,reorder-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "drag", "index": 47, "name": "table_group,datagrid,-,DATAGRID,drag,ALTER,-,resize-column,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll", "index": 48, "name": "table_group,datagrid,-,DATAGRID,scroll,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "scroll_INTERVAL", "index": 49, "name": "table_group,datagrid,-,DATAGRID,scroll_INTERVAL,ALTER,-,scroll-datagrid,USER", "elementId": "datagrid", "elementGroup": "table_group"}, {"action": "keydown_INTERVAL", "index": 50, "name": "table_group,datagrid-limit,-,TEXTBOX,keydown_INTERVAL,ALTER,-,options,USER", "elementId": "datagrid-limit", "elementGroup": "table_group"}, {"action": "click", "index": 51, "name": "table_group,datagrid-refresh,-,BUTTON,click,PERFORM,-,options,USER", "elementId": "datagrid-refresh", "elementGroup": "table_group"}, {"action": "click", "index": 52, "name": "table_group,datagrid-sort-direction,-,RADIOBUTTON,click,SELECT,-,options,USER", "elementId": "datagrid-sort-direction", "elementGroup": "table_group"}, {"action": "click", "index": 53, "name": "top,chart-options,-,BUTTON,click,HIDE,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 54, "name": "top,chart-options,-,BUTTON,click,SHOW,-,options,USER", "elementId": "chart-options", "elementGroup": "top"}, {"action": "click", "index": 55, "name": "top,dataset-menu,-,BUTTON,click,SELECT,-,dataset,USER", "elementId": "dataset-menu", "elementGroup": "top"}, {"action": "onload", "index": 56, "name": "top,window,-,WINDOW,onload,SHOW,-,-,USER", "elementId": "window", "elementGroup": "top"}, {"action": "click", "index": 57, "name": "top,workspace,layout,WORKSPACE,click,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}, {"action": "dragstart", "index": 58, "name": "top,workspace,layout,WORKSPACE,dragstart,ALTER,-,visualization,USER", "elementId": "workspace", "elementGroup": "top"}]}}; -export default graphData; \ No newline at end of file
diff --git a/docker/tap/wait-for-postgres.sh b/docker/tap/wait-for-postgres.sh deleted file mode 100644 index 96084c7..0000000 --- a/docker/tap/wait-for-postgres.sh +++ /dev/null
@@ -1,27 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at - -# http://www.apache.org/licenses/LICENSE-2.0 - -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -#!/bin/bash - -delay=2 -sleep $delay -n=0 -until [ $n -ge 3 ] -do - python manage.py migrate && python manage.py runserver 0.0.0.0:8000 && break - echo "Retrying connection in $delay seconds..." - n=$[$n+1] - sleep 2 -done
diff --git a/kubernetes/README.md b/kubernetes/README.md index 35d50ee..88af94b 100644 --- a/kubernetes/README.md +++ b/kubernetes/README.md
@@ -6,4 +6,4 @@ Use the `run.sh` script to deploy the stack. -`test.py` is included as a utility to verify that logs are correctly posted to elastic locally. \ No newline at end of file +`test.py` is included as a utility to verify that logs are correctly posted to elastic locally. To run `test.py`, you must first install it's requirements via `pip install -r requirements.txt`.
diff --git a/kubernetes/requirements.txt b/kubernetes/requirements.txt new file mode 100644 index 0000000..41d37f2 --- /dev/null +++ b/kubernetes/requirements.txt
@@ -0,0 +1 @@ +elasticsearch-dsl>=8.0.0