diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..6d556cdb5c7d93fe2f489098694cf1baef605332 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +*.egg-info +__pycache__ +coverage.xml +.coverage +htmlcov +.tox +dist +.idea +node_modules +docs/build diff --git a/Changelog.md b/Changelog.md new file mode 100644 index 0000000000000000000000000000000000000000..372571e5d5a16ce4d351e1e3d2f498b08b73cd9d --- /dev/null +++ b/Changelog.md @@ -0,0 +1,8 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## [0.1] - 2022-11-07 +- Initial skeleton - First Release +- COMP-2 Prototype Data only Service Matrix +- COMP-31 Baseline React routing structure diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000000000000000000000000000000000000..3f4e48af6b46496b37c17bd08e2455fb68af57b4 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +recursive-include compendium_v2/static * +include compendium_v2/datasources/dummy-service-matrix.json * +include compendium_v2/templates/index.html * diff --git a/README.md b/README.md index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0ea26fc7f17cb1854a8d5cef66cea68b6e7006c2 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,97 @@ +# Skeleton Web App + +## Installation Process + +```bash +$ git clone https://gitlab.geant.net/live-projects/compendium-v2.git +``` + +```bash +$ python3 -m venv compendium-v2 +$ .compendium-v2/bin/activate +$ pip install tox +$ pip install -r requirements.txt +$ cd compendium-v2 +$ tox -e py39 +``` + +## Overview + +This module implements a skeleton Flask-based webservice +and in-browser React front-end. + +The webservice communicates with the front end over HTTP. +Responses to valid requests are returned as JSON messages. +The server will therefore return an error unless +`application/json` is in the `Accept` request header field. + +HTTP communication and JSON grammar details are +beyond the scope of this document. +Please refer to [RFC 2616](https://tools.ietf.org/html/rfc2616) +and www.json.org for more details. + + +## Configuration + +This app allows specification of a few +example configuration parameters. These +parameters should stored in a file formatted +similarly to `config.json.example`, and the name +of this file should be stored in the environment +variable `SETTINGS_FILENAME` when running the service. + +## Building the web application + +The initial repository doesn't contain the required web application. +For instructions on building this see `webapp/README.md`. + +## Running this module + +This module has been tested in the following execution environments: + +- As an embedded Flask application. +For example, the application could be launched as follows: + +```bash +$ export FLASK_APP=compendium_v2.app +$ export SETTINGS_FILENAME=config-example.json +$ flask run +``` + +See https://flask.palletsprojects.com/en/2.1.x/deploying/ +for best practices about running in production environments. + +### resources + +Any non-empty responses are JSON formatted messages. + +#### /data/version + + * /version + + The response will be an object + containing the module and protocol versions of the + running server and will be formatted as follows: + + ```json + { + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "api": { + "type": "string", + "pattern": r'\d+\.\d+' + }, + "module": { + "type": "string", + "pattern": r'\d+\.\d+' + } + }, + "required": ["api", "module"], + "additionalProperties": False + } + ``` + +#### /test/test1 + +The response will be some json data, as an example ... diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/compendium_v2/__init__.py b/compendium_v2/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..a4c90406a84dace0cd4286b0a2afbd1e7771f85f --- /dev/null +++ b/compendium_v2/__init__.py @@ -0,0 +1,45 @@ +""" +automatically invoked app factory +""" +import logging +import os + +from flask import Flask +from flask_cors import CORS # for debugging + +from compendium_v2 import environment +from compendium_v2 import config + + +def create_app(): + """ + overrides default settings with those found + in the file read from env var SETTINGS_FILENAME + + :return: a new flask app instance + """ + + assert 'SETTINGS_FILENAME' in os.environ + with open(os.environ['SETTINGS_FILENAME']) as f: + app_config = config.load(f) + + app = Flask(__name__) + CORS(app) + + app.secret_key = 'super secret session key' + app.config['CONFIG_PARAMS'] = app_config + + from compendium_v2.routes import default + app.register_blueprint(default.routes, url_prefix='/') + + from compendium_v2.routes import api + app.register_blueprint(api.routes, url_prefix='/api') + + from compendium_v2.routes import service_matrix + app.register_blueprint(service_matrix.routes, url_prefix='/service-matrix') + + logging.info('Flask app initialized') + + environment.setup_logging() + + return app diff --git a/compendium_v2/app.py b/compendium_v2/app.py new file mode 100644 index 0000000000000000000000000000000000000000..868719e13e6f909dea83ee1ab8c311d5713d4269 --- /dev/null +++ b/compendium_v2/app.py @@ -0,0 +1,12 @@ +""" +default app creation +""" +import compendium_v2 +from compendium_v2 import environment + +environment.setup_logging() + +app = compendium_v2.create_app() + +if __name__ == "__main__": + app.run(host="::", port="33333") diff --git a/compendium_v2/config-example.json b/compendium_v2/config-example.json new file mode 100644 index 0000000000000000000000000000000000000000..0f1c1dd6186dedaf4a10eeb349472597c79d0c1d --- /dev/null +++ b/compendium_v2/config-example.json @@ -0,0 +1,4 @@ +{ + "str-param": "some string", + "int-param": -1234 +} diff --git a/compendium_v2/config.py b/compendium_v2/config.py new file mode 100644 index 0000000000000000000000000000000000000000..0412e0e71826433918656939f4850c676c123c3d --- /dev/null +++ b/compendium_v2/config.py @@ -0,0 +1,26 @@ +import json + +import jsonschema + +CONFIG_SCHEMA = { + '$schema': 'http://json-schema.org/draft-07/schema#', + 'type': 'object', + 'properties': { + 'str-param': {'type': 'string'}, + 'int-param': {'type': 'integer'} + }, + 'required': ['str-param', 'int-param'], + 'additionalProperties': False +} + + +def load(f): + """ + loads, validates and returns configuration parameters + + :param f: file-like object that produces the config file + :return: + """ + config = json.loads(f.read()) + jsonschema.validate(config, CONFIG_SCHEMA) + return config diff --git a/compendium_v2/datasources/__init__.py b/compendium_v2/datasources/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/compendium_v2/datasources/dummy-service-matrix.json b/compendium_v2/datasources/dummy-service-matrix.json new file mode 100644 index 0000000000000000000000000000000000000000..3afb0bc689d7e66932d47c112265eba7eaa2dd75 --- /dev/null +++ b/compendium_v2/datasources/dummy-service-matrix.json @@ -0,0 +1,87421 @@ +{ + "key":"Services per NREN", + "nrens":[ + { + "name":"UzSciNet", + "nren_id":47, + "tags":[ + + ] + }, + { + "name":"NITC", + "nren_id":24, + "tags":[ + + ] + }, + { + "name":"RHnet", + "nren_id":19, + "tags":[ + "terena_member", + "geant_member" + ] + }, + { + "name":"Internet2", + "nren_id":93, + "tags":[ + + ] + }, + { + "name":"AARNet", + "nren_id":74, + "tags":[ + + ] + }, + { + "name":"IRANET/IPM", + "nren_id":20, + "tags":[ + "terena_member" + ] + }, + { + "name":"GCC", + "nren_id":55, + "tags":[ + + ] + }, + { + "name":"KAZRENA", + "nren_id":56, + "tags":[ + + ] + }, + { + "name":"RNRT", + "nren_id":43, + "tags":[ + + ] + }, + { + "name":"BIHARNET", + "nren_id":50, + "tags":[ + + ] + }, + { + "name":"FREEnet", + "nren_id":53, + "tags":[ + + ] + }, + { + "name":"SHERN", + "nren_id":60, + "tags":[ + + ] + }, + { + "name":"UNREN", + "nren_id":61, + "tags":[ + + ] + }, + { + "name":"IRANET", + "nren_id":62, + "tags":[ + "terena_member" + ] + }, + { + "name":"TARENA", + "nren_id":64, + "tags":[ + + ] + }, + { + "name":"TuRENA", + "nren_id":65, + "tags":[ + + ] + }, + { + "name":"RENATA", + "nren_id":76, + "tags":[ + + ] + }, + { + "name":"UARNet", + "nren_id":67, + "tags":[ + + ] + }, + { + "name":"RAAP", + "nren_id":80, + "tags":[ + + ] + }, + { + "name":"RAU", + "nren_id":82, + "tags":[ + + ] + }, + { + "name":"RENU", + "nren_id":84, + "tags":[ + + ] + }, + { + "name":"CNTI", + "nren_id":85, + "tags":[ + + ] + }, + { + "name":"MoRENet", + "nren_id":86, + "tags":[ + + ] + }, + { + "name":"CEDIA", + "nren_id":78, + "tags":[ + + ] + }, + { + "name":"MAREN", + "nren_id":83, + "tags":[ + + ] + }, + { + "name":"RAGIE", + "nren_id":79, + "tags":[ + + ] + }, + { + "name":"CUDI", + "nren_id":81, + "tags":[ + + ] + }, + { + "name":"KRENA-AKNET", + "nren_id":66, + "tags":[ + + ] + }, + { + "name":"RNP", + "nren_id":97, + "tags":[ + + ] + }, + { + "name":"LEARN", + "nren_id":230, + "tags":[ + + ] + }, + { + "name":"CANARIE", + "nren_id":88, + "tags":[ + + ] + }, + { + "name":"TENET", + "nren_id":91, + "tags":[ + + ] + }, + { + "name":"KENET", + "nren_id":98, + "tags":[ + + ] + }, + { + "name":"PADI2", + "nren_id":99, + "tags":[ + + ] + }, + { + "name":"REACCIUN", + "nren_id":96, + "tags":[ + + ] + }, + { + "name":"NCHC", + "nren_id":95, + "tags":[ + + ] + }, + { + "name":"RENER", + "nren_id":214, + "tags":[ + + ] + }, + { + "name":"NiCT", + "nren_id":222, + "tags":[ + + ] + }, + { + "name":"CERNET", + "nren_id":217, + "tags":[ + + ] + }, + { + "name":"CSTNet", + "nren_id":218, + "tags":[ + + ] + }, + { + "name":"NREN", + "nren_id":203, + "tags":[ + + ] + }, + { + "name":"SANReN", + "nren_id":202, + "tags":[ + + ] + }, + { + "name":"ZAMREN", + "nren_id":206, + "tags":[ + + ] + }, + { + "name":"eb@le", + "nren_id":207, + "tags":[ + + ] + }, + { + "name":"CameroonianNREN", + "nren_id":213, + "tags":[ + + ] + }, + { + "name":"RwEdNet", + "nren_id":215, + "tags":[ + + ] + }, + { + "name":"ITB", + "nren_id":221, + "tags":[ + + ] + }, + { + "name":"HARNET", + "nren_id":219, + "tags":[ + + ] + }, + { + "name":"ERNET", + "nren_id":220, + "tags":[ + + ] + }, + { + "name":"SingAREN", + "nren_id":229, + "tags":[ + + ] + }, + { + "name":"KOREN", + "nren_id":224, + "tags":[ + + ] + }, + { + "name":"LERNET", + "nren_id":225, + "tags":[ + + ] + }, + { + "name":"PERN", + "nren_id":227, + "tags":[ + + ] + }, + { + "name":"PREGINET", + "nren_id":228, + "tags":[ + + ] + }, + { + "name":"ThaiREN", + "nren_id":231, + "tags":[ + + ] + }, + { + "name":"TERNET", + "nren_id":210, + "tags":[ + + ] + }, + { + "name":"RNU", + "nren_id":208, + "tags":[ + + ] + }, + { + "name":"BdREN", + "nren_id":216, + "tags":[ + + ] + }, + { + "name":"GARNET", + "nren_id":212, + "tags":[ + + ] + }, + { + "name":"NII", + "nren_id":223, + "tags":[ + + ] + }, + { + "name":"ngNER", + "nren_id":150, + "tags":[ + + ] + }, + { + "name":"snRER", + "nren_id":151, + "tags":[ + + ] + }, + { + "name":"ASGC", + "nren_id":251, + "tags":[ + + ] + }, + { + "name":"JUNet", + "nren_id":92, + "tags":[ + + ] + }, + { + "name":"BOLNET", + "nren_id":233, + "tags":[ + + ] + }, + { + "name":"INNOVA|RED", + "nren_id":235, + "tags":[ + + ] + }, + { + "name":"CRNet", + "nren_id":236, + "tags":[ + + ] + }, + { + "name":"RedUNIV", + "nren_id":237, + "tags":[ + + ] + }, + { + "name":"UNITEC", + "nren_id":238, + "tags":[ + + ] + }, + { + "name":"RENIA", + "nren_id":239, + "tags":[ + + ] + }, + { + "name":"RedCyT", + "nren_id":240, + "tags":[ + + ] + }, + { + "name":"Arandu", + "nren_id":241, + "tags":[ + + ] + }, + { + "name":"RUB", + "nren_id":244, + "tags":[ + + ] + }, + { + "name":"Brunet", + "nren_id":245, + "tags":[ + + ] + }, + { + "name":"ITC", + "nren_id":246, + "tags":[ + + ] + }, + { + "name":"PNGARNet", + "nren_id":247, + "tags":[ + + ] + }, + { + "name":"Qatar Foundation", + "nren_id":249, + "tags":[ + + ] + }, + { + "name":"KAUST", + "nren_id":250, + "tags":[ + + ] + }, + { + "name":"VinaREN", + "nren_id":232, + "tags":[ + + ] + }, + { + "name":"KREONET", + "nren_id":243, + "tags":[ + + ] + }, + { + "name":"SAREN", + "nren_id":253, + "tags":[ + + ] + }, + { + "name":"SARNET", + "nren_id":252, + "tags":[ + + ] + }, + { + "name":"CNRS", + "nren_id":26, + "tags":[ + + ] + }, + { + "name":"SudREN", + "nren_id":209, + "tags":[ + + ] + }, + { + "name":"RoEduNet", + "nren_id":52, + "tags":[ + "terena_member", + "geant_member" + ] + }, + { + "name":"REANNZ", + "nren_id":90, + "tags":[ + + ] + }, + { + "name":"MaliREN", + "nren_id":148, + "tags":[ + + ] + }, + { + "name":"REUNA", + "nren_id":87, + "tags":[ + + ] + }, + { + "name":"RADEI", + "nren_id":154, + "tags":[ + + ] + }, + { + "name":"EUN", + "nren_id":59, + "tags":[ + + ] + }, + { + "name":"iRENALA", + "nren_id":255, + "tags":[ + + ] + }, + { + "name":"OMREN", + "nren_id":256, + "tags":[ + + ] + }, + { + "name":"EtherNet", + "nren_id":257, + "tags":[ + + ] + }, + { + "name":"Somaliren", + "nren_id":258, + "tags":[ + + ] + }, + { + "name":"TTRENT", + "nren_id":153, + "tags":[ + + ] + }, + { + "name":"AfgREN", + "nren_id":259, + "tags":[ + + ] + }, + { + "name":"mmREN", + "nren_id":260, + "tags":[ + + ] + }, + { + "name":"ErdemNet", + "nren_id":261, + "tags":[ + + ] + }, + { + "name":"SUREN", + "nren_id":262, + "tags":[ + + ] + }, + { + "name":"JREN", + "nren_id":263, + "tags":[ + + ] + }, + { + "name":"BARNet", + "nren_id":264, + "tags":[ + + ] + }, + { + "name":"RerBenin", + "nren_id":265, + "tags":[ + + ] + }, + { + "name":"NigerREN", + "nren_id":266, + "tags":[ + + ] + }, + { + "name":"ngREN", + "nren_id":211, + "tags":[ + + ] + }, + { + "name":"Ankabut", + "nren_id":248, + "tags":[ + + ] + }, + { + "name":"RAICES", + "nren_id":77, + "tags":[ + + ] + }, + { + "name":"MYREN", + "nren_id":226, + "tags":[ + + ] + }, + { + "name":"GabonREN", + "nren_id":147, + "tags":[ + + ] + }, + { + "name":"RITER", + "nren_id":146, + "tags":[ + + ] + }, + { + "name":"RNERT", + "nren_id":152, + "tags":[ + + ] + }, + { + "name":"IUCC", + "nren_id":22, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"SWITCH", + "nren_id":42, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"BREN", + "nren_id":58, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"UoM/RicerkaNet", + "nren_id":29, + "tags":[ + "terena_member", + "geant_member" + ] + }, + { + "name":"GRNET S.A.", + "nren_id":17, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"BASNET", + "nren_id":54, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"AzScienceNet", + "nren_id":49, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"ANA", + "nren_id":1, + "tags":[ + "europe", + "geant_member" + ] + }, + { + "name":"ARENA", + "nren_id":3, + "tags":[ + "europe" + ] + }, + { + "name":"ARN", + "nren_id":2, + "tags":[ + "europe" + ] + }, + { + "name":"AzRena", + "nren_id":57, + "tags":[ + "europe" + ] + }, + { + "name":"DeIC", + "nren_id":9, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"DFN", + "nren_id":16, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"e-ARENA", + "nren_id":37, + "tags":[ + "europe" + ] + }, + { + "name":"EENet", + "nren_id":11, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"FCCN", + "nren_id":35, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"Funet", + "nren_id":12, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"GRENA", + "nren_id":15, + "tags":[ + "europe", + "geant_member" + ] + }, + { + "name":"LITNET", + "nren_id":27, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"MARnet", + "nren_id":14, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"MARWAN", + "nren_id":31, + "tags":[ + "europe" + ] + }, + { + "name":"RedIRIS", + "nren_id":40, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"RENATER", + "nren_id":13, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"SANET", + "nren_id":38, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"SUNET", + "nren_id":41, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"SURFnet", + "nren_id":32, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"ULAKBIM", + "nren_id":44, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"URAN", + "nren_id":45, + "tags":[ + "europe", + "geant_member" + ] + }, + { + "name":"AAF - Australian Access Federation", + "nren_id":267, + "tags":[ + "terena_member" + ] + }, + { + "name":"ACOnet", + "nren_id":4, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"AMRES", + "nren_id":48, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"ARNES", + "nren_id":39, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"ASNET-AM", + "nren_id":200, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"Belnet", + "nren_id":5, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"CYNET", + "nren_id":7, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"GARR", + "nren_id":23, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"HEAnet", + "nren_id":21, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"MREN", + "nren_id":100, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"PIONIER", + "nren_id":34, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"RENAM", + "nren_id":30, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"Jisc", + "nren_id":46, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"CARNET", + "nren_id":6, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"Uninett", + "nren_id":33, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"KIFU", + "nren_id":18, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"CESNET", + "nren_id":8, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"RESTENA", + "nren_id":28, + "tags":[ + "terena_member", + "europe", + "geant_member" + ] + }, + { + "name":"KREN", + "nren_id":269, + "tags":[ + + ] + }, + { + "name":"LANET", + "nren_id":51, + "tags":[ + "geant_member" + ] + }, + { + "name":"SigmaNet", + "nren_id":25, + "tags":[ + "terena_member" + ] + } + ], + "services":[ + { + "48":{ + "id":365634, + "value":"No", + "question_id":12919, + "created_at":"2017-09-06T12:18:51.066+02:00", + "updated_at":"2017-09-06T12:18:51.066+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365692, + "value":"No", + "question_id":12919, + "created_at":"2017-09-07T15:33:20.689+02:00", + "updated_at":"2017-09-07T15:33:20.689+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365921, + "value":"Yes", + "question_id":12919, + "created_at":"2017-09-13T13:45:47.561+02:00", + "updated_at":"2017-09-13T13:45:47.561+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366365, + "value":"No", + "question_id":12919, + "created_at":"2017-09-29T13:52:28.835+02:00", + "updated_at":"2017-09-29T13:52:28.835+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366588, + "value":"Yes", + "question_id":12919, + "created_at":"2017-10-08T09:18:43.866+02:00", + "updated_at":"2017-10-08T09:18:43.866+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366882, + "value":"No", + "question_id":12919, + "created_at":"2017-10-11T09:35:55.313+02:00", + "updated_at":"2017-10-11T09:35:55.313+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367154, + "value":"Yes", + "question_id":12919, + "created_at":"2017-10-11T13:42:25.748+02:00", + "updated_at":"2017-10-11T13:42:25.748+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367490, + "value":"Yes", + "question_id":12919, + "created_at":"2017-10-17T12:05:26.973+02:00", + "updated_at":"2017-10-17T12:05:26.973+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":367658, + "value":"Yes", + "question_id":12919, + "created_at":"2017-10-23T12:25:11.154+02:00", + "updated_at":"2017-10-23T12:25:11.154+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367755, + "value":"No", + "question_id":12919, + "created_at":"2017-10-23T19:33:56.873+02:00", + "updated_at":"2017-10-23T19:33:56.873+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367958, + "value":"Yes", + "question_id":12919, + "created_at":"2017-10-24T13:28:05.593+02:00", + "updated_at":"2017-10-24T13:28:05.593+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368563, + "value":"Planned", + "question_id":12919, + "created_at":"2017-10-31T14:40:23.022+01:00", + "updated_at":"2017-10-31T14:40:23.022+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368938, + "value":"Yes", + "question_id":12919, + "created_at":"2017-11-08T15:49:26.246+01:00", + "updated_at":"2017-11-08T15:49:26.246+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369080, + "value":"No", + "question_id":12919, + "created_at":"2017-11-10T11:15:15.266+01:00", + "updated_at":"2017-11-10T11:15:15.266+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369243, + "value":"Yes", + "question_id":12919, + "created_at":"2017-11-10T15:39:31.433+01:00", + "updated_at":"2017-11-10T15:39:31.433+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370233, + "value":"No", + "question_id":12919, + "created_at":"2017-11-23T14:12:42.526+01:00", + "updated_at":"2017-11-23T14:12:42.526+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":370368, + "value":"No", + "question_id":12919, + "created_at":"2017-11-24T16:14:02.779+01:00", + "updated_at":"2017-11-24T16:14:02.779+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370778, + "value":"No", + "question_id":12919, + "created_at":"2017-11-27T09:36:39.166+01:00", + "updated_at":"2017-11-27T09:36:39.166+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371290, + "value":"No", + "question_id":12919, + "created_at":"2017-11-27T14:29:17.645+01:00", + "updated_at":"2017-11-27T14:29:17.645+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371781, + "value":"No", + "question_id":12919, + "created_at":"2017-11-28T13:18:48.589+01:00", + "updated_at":"2017-11-28T13:18:48.589+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372328, + "value":"No", + "question_id":12919, + "created_at":"2017-11-29T12:34:15.639+01:00", + "updated_at":"2017-11-29T12:34:15.639+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":373183, + "value":"Yes", + "question_id":12919, + "created_at":"2017-12-01T17:40:07.192+01:00", + "updated_at":"2017-12-01T17:40:07.192+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373261, + "value":"Yes", + "question_id":12919, + "created_at":"2017-12-04T11:15:08.039+01:00", + "updated_at":"2017-12-04T11:15:08.039+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373714, + "value":"Yes", + "question_id":12919, + "created_at":"2017-12-04T18:00:25.588+01:00", + "updated_at":"2017-12-04T18:00:25.588+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374355, + "value":"Yes", + "question_id":12919, + "created_at":"2017-12-06T13:15:09.778+01:00", + "updated_at":"2017-12-06T13:15:09.778+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374690, + "value":"Yes", + "question_id":12919, + "created_at":"2017-12-13T10:06:18.458+01:00", + "updated_at":"2017-12-13T10:06:18.458+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375042, + "value":"Yes", + "question_id":12919, + "created_at":"2017-12-14T14:22:00.137+01:00", + "updated_at":"2017-12-14T14:22:00.137+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375470, + "value":"Yes", + "question_id":12919, + "created_at":"2017-12-28T10:20:07.610+01:00", + "updated_at":"2017-12-28T10:20:07.610+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375731, + "value":"Yes", + "question_id":12919, + "created_at":"2018-01-18T13:27:47.041+01:00", + "updated_at":"2018-01-18T13:27:47.041+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":378669, + "value":"", + "question_id":12919, + "created_at":"2018-04-26T10:04:46.620+02:00", + "updated_at":"2018-04-26T10:04:46.620+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":378671, + "value":"", + "question_id":12919, + "created_at":"2018-04-26T10:04:46.640+02:00", + "updated_at":"2018-04-26T10:04:46.640+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":378675, + "value":"", + "question_id":12919, + "created_at":"2018-04-26T10:04:46.672+02:00", + "updated_at":"2018-04-26T10:04:46.672+02:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":378676, + "value":"", + "question_id":12919, + "created_at":"2018-04-26T10:04:46.697+02:00", + "updated_at":"2018-04-26T10:04:46.697+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":378678, + "value":"", + "question_id":12919, + "created_at":"2018-04-26T10:04:46.753+02:00", + "updated_at":"2018-04-26T10:04:46.753+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":378679, + "value":"", + "question_id":12919, + "created_at":"2018-04-26T10:04:46.761+02:00", + "updated_at":"2018-04-26T10:04:46.761+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":378680, + "value":"", + "question_id":12919, + "created_at":"2018-04-26T10:04:46.782+02:00", + "updated_at":"2018-04-26T10:04:46.782+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":384009, + "value":"No", + "question_id":12919, + "created_at":"2017-12-06T13:40:28.289+01:00", + "updated_at":"2017-12-06T13:40:28.289+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618230, + "value":"Yes", + "question_id":12919, + "created_at":"2018-10-28T18:36:16.773+01:00", + "updated_at":"2018-10-28T18:36:16.773+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641559, + "value":"Yes", + "question_id":12919, + "created_at":"2018-10-30T13:55:19.987+01:00", + "updated_at":"2018-10-30T13:55:19.987+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756382, + "value":"Yes", + "question_id":12919, + "created_at":"2018-11-05T14:06:17.007+01:00", + "updated_at":"2018-11-05T14:06:17.007+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":774396, + "value":"Yes", + "question_id":12919, + "created_at":"2018-11-15T12:47:51.351+01:00", + "updated_at":"2018-11-15T12:47:51.351+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":378681, + "value":"", + "question_id":12919, + "created_at":"2018-04-26T10:04:46.792+02:00", + "updated_at":"2018-04-26T10:04:46.792+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":1506685, + "value":"Yes", + "question_id":12919, + "created_at":"2021-11-23T12:48:41.417+01:00", + "updated_at":"2021-11-23T12:48:41.417+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"anti-spam", + "title":"Do you offer Email filtering?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Anti-spam solution", + "title_detailed":"Anti-spam solutions for detecting and eliminating viruses and spam mails.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365633, + "value":"No", + "question_id":12893, + "created_at":"2017-09-06T12:18:43.418+02:00", + "updated_at":"2017-09-06T12:18:43.418+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365691, + "value":"No", + "question_id":12893, + "created_at":"2017-09-07T15:32:47.407+02:00", + "updated_at":"2017-09-07T15:32:47.407+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365919, + "value":"No", + "question_id":12893, + "created_at":"2017-09-13T13:45:43.203+02:00", + "updated_at":"2017-09-13T13:45:43.203+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366363, + "value":"No", + "question_id":12893, + "created_at":"2017-09-29T13:52:20.678+02:00", + "updated_at":"2017-09-29T13:52:20.678+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366587, + "value":"No", + "question_id":12893, + "created_at":"2017-10-08T09:18:34.800+02:00", + "updated_at":"2017-10-08T09:18:34.800+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":366667, + "value":"Planned", + "question_id":12893, + "created_at":"2017-10-09T11:17:40.701+02:00", + "updated_at":"2017-10-09T11:17:40.701+02:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366884, + "value":"No", + "question_id":12893, + "created_at":"2017-10-11T09:36:15.448+02:00", + "updated_at":"2017-10-11T09:36:15.448+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367485, + "value":"No", + "question_id":12893, + "created_at":"2017-10-17T12:05:11.078+02:00", + "updated_at":"2017-10-17T12:05:11.078+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367753, + "value":"No", + "question_id":12893, + "created_at":"2017-10-23T19:33:47.587+02:00", + "updated_at":"2017-10-23T19:33:47.587+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367956, + "value":"No", + "question_id":12893, + "created_at":"2017-10-24T13:27:39.094+02:00", + "updated_at":"2017-10-24T13:27:39.094+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":368197, + "value":"No", + "question_id":12893, + "created_at":"2017-10-30T09:27:00.459+01:00", + "updated_at":"2017-10-30T09:27:00.459+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368935, + "value":"No", + "question_id":12893, + "created_at":"2017-11-08T15:48:49.210+01:00", + "updated_at":"2017-11-08T15:48:49.210+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369082, + "value":"No", + "question_id":12893, + "created_at":"2017-11-10T11:15:25.413+01:00", + "updated_at":"2017-11-10T11:15:25.413+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369241, + "value":"Planned", + "question_id":12893, + "created_at":"2017-11-10T15:39:24.297+01:00", + "updated_at":"2017-11-10T15:39:24.297+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370231, + "value":"No", + "question_id":12893, + "created_at":"2017-11-23T14:12:35.374+01:00", + "updated_at":"2017-11-23T14:12:35.374+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370776, + "value":"No", + "question_id":12893, + "created_at":"2017-11-27T09:36:33.609+01:00", + "updated_at":"2017-11-27T09:36:33.609+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371295, + "value":"No", + "question_id":12893, + "created_at":"2017-11-27T14:29:29.924+01:00", + "updated_at":"2017-11-27T14:29:29.924+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371427, + "value":"No", + "question_id":12893, + "created_at":"2017-11-27T14:47:47.231+01:00", + "updated_at":"2017-11-27T14:47:47.231+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371584, + "value":"No", + "question_id":12893, + "created_at":"2017-11-27T16:43:59.565+01:00", + "updated_at":"2017-11-27T16:43:59.565+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371779, + "value":"No", + "question_id":12893, + "created_at":"2017-11-28T13:18:40.727+01:00", + "updated_at":"2017-11-28T13:18:40.727+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372326, + "value":"No", + "question_id":12893, + "created_at":"2017-11-29T12:34:04.363+01:00", + "updated_at":"2017-11-29T12:34:04.363+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372649, + "value":"No", + "question_id":12893, + "created_at":"2017-11-29T21:46:59.700+01:00", + "updated_at":"2017-11-29T21:46:59.700+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372772, + "value":"No", + "question_id":12893, + "created_at":"2017-11-30T08:33:54.945+01:00", + "updated_at":"2017-11-30T08:33:54.945+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373712, + "value":"No", + "question_id":12893, + "created_at":"2017-12-04T18:00:16.243+01:00", + "updated_at":"2017-12-04T18:00:16.243+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374066, + "value":"No", + "question_id":12893, + "created_at":"2017-12-06T07:26:27.724+01:00", + "updated_at":"2017-12-06T07:26:27.724+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374353, + "value":"No", + "question_id":12893, + "created_at":"2017-12-06T13:14:50.062+01:00", + "updated_at":"2017-12-06T13:14:50.062+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375040, + "value":"No", + "question_id":12893, + "created_at":"2017-12-14T14:21:52.558+01:00", + "updated_at":"2017-12-14T14:21:52.558+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375503, + "value":"Yes", + "question_id":12893, + "created_at":"2017-12-28T10:36:43.671+01:00", + "updated_at":"2017-12-28T10:36:43.671+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375700, + "value":"No", + "question_id":12893, + "created_at":"2018-01-09T17:27:43.567+01:00", + "updated_at":"2018-01-09T17:27:43.567+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375906, + "value":"No", + "question_id":12893, + "created_at":"2018-01-23T12:33:33.749+01:00", + "updated_at":"2018-01-23T12:33:33.749+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":378564, + "value":"", + "question_id":12893, + "created_at":"2018-04-26T10:04:45.747+02:00", + "updated_at":"2018-04-26T10:04:45.747+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":378565, + "value":"", + "question_id":12893, + "created_at":"2018-04-26T10:04:45.756+02:00", + "updated_at":"2018-04-26T10:04:45.756+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":378566, + "value":"", + "question_id":12893, + "created_at":"2018-04-26T10:04:45.761+02:00", + "updated_at":"2018-04-26T10:04:45.761+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":378568, + "value":"", + "question_id":12893, + "created_at":"2018-04-26T10:04:45.770+02:00", + "updated_at":"2018-04-26T10:04:45.770+02:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":378569, + "value":"", + "question_id":12893, + "created_at":"2018-04-26T10:04:45.776+02:00", + "updated_at":"2018-04-26T10:04:45.776+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":378570, + "value":"", + "question_id":12893, + "created_at":"2018-04-26T10:04:45.788+02:00", + "updated_at":"2018-04-26T10:04:45.788+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":378571, + "value":"", + "question_id":12893, + "created_at":"2018-04-26T10:04:45.798+02:00", + "updated_at":"2018-04-26T10:04:45.798+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":378572, + "value":"", + "question_id":12893, + "created_at":"2018-04-26T10:04:45.804+02:00", + "updated_at":"2018-04-26T10:04:45.804+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":378573, + "value":"", + "question_id":12893, + "created_at":"2018-04-26T10:04:45.814+02:00", + "updated_at":"2018-04-26T10:04:45.814+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":378574, + "value":"", + "question_id":12893, + "created_at":"2018-04-26T10:04:45.821+02:00", + "updated_at":"2018-04-26T10:04:45.821+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":378575, + "value":"", + "question_id":12893, + "created_at":"2018-04-26T10:04:45.826+02:00", + "updated_at":"2018-04-26T10:04:45.826+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383935, + "value":"Yes", + "question_id":12893, + "created_at":"2017-12-06T13:39:47.858+01:00", + "updated_at":"2017-12-06T13:39:47.858+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":378576, + "value":"", + "question_id":12893, + "created_at":"2018-04-26T10:04:45.833+02:00", + "updated_at":"2018-04-26T10:04:45.833+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"class-registration", + "title":"Do you offer Class registration tool?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Class registration tool", + "title_detailed":"Software for teachers to register students for classes etc.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365613, + "value":"No", + "question_id":12895, + "created_at":"2017-09-06T12:17:07.986+02:00", + "updated_at":"2017-09-06T12:17:07.986+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365905, + "value":"Yes", + "question_id":12895, + "created_at":"2017-09-13T13:44:14.486+02:00", + "updated_at":"2017-09-13T13:44:14.486+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365963, + "value":"Yes", + "question_id":12895, + "created_at":"2017-09-13T14:15:59.427+02:00", + "updated_at":"2017-09-13T14:15:59.427+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366806, + "value":"Yes", + "question_id":12895, + "created_at":"2017-10-10T14:29:05.677+02:00", + "updated_at":"2017-10-10T14:29:05.677+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366941, + "value":"Planned", + "question_id":12895, + "created_at":"2017-10-11T10:47:38.565+02:00", + "updated_at":"2017-10-11T10:47:38.565+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367246, + "value":"Yes", + "question_id":12895, + "created_at":"2017-10-11T14:17:20.823+02:00", + "updated_at":"2017-10-11T14:17:20.823+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367310, + "value":"Yes", + "question_id":12895, + "created_at":"2017-10-11T20:51:21.990+02:00", + "updated_at":"2017-10-11T20:51:21.990+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367729, + "value":"Yes", + "question_id":12895, + "created_at":"2017-10-23T19:28:51.784+02:00", + "updated_at":"2017-10-23T19:28:51.784+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367940, + "value":"No", + "question_id":12895, + "created_at":"2017-10-24T13:22:34.687+02:00", + "updated_at":"2017-10-24T13:22:34.687+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":368499, + "value":"Planned", + "question_id":12895, + "created_at":"2017-10-31T14:25:32.923+01:00", + "updated_at":"2017-10-31T14:25:32.923+01:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368914, + "value":"Yes", + "question_id":12895, + "created_at":"2017-11-08T15:39:56.096+01:00", + "updated_at":"2017-11-08T15:39:56.096+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369224, + "value":"Yes", + "question_id":12895, + "created_at":"2017-11-10T15:37:12.433+01:00", + "updated_at":"2017-11-10T15:37:12.433+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369275, + "value":"Yes", + "question_id":12895, + "created_at":"2017-11-10T16:51:49.846+01:00", + "updated_at":"2017-11-10T16:51:49.846+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":369530, + "value":"Yes", + "question_id":12895, + "created_at":"2017-11-13T20:34:46.434+01:00", + "updated_at":"2017-11-13T20:34:46.434+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":369544, + "value":"Yes", + "question_id":12895, + "created_at":"2017-11-15T17:24:36.144+01:00", + "updated_at":"2017-11-15T17:24:36.144+01:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":369569, + "value":"Yes", + "question_id":12895, + "created_at":"2017-11-17T08:04:26.633+01:00", + "updated_at":"2017-11-17T08:04:26.633+01:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369833, + "value":"Yes", + "question_id":12895, + "created_at":"2017-11-21T13:49:20.962+01:00", + "updated_at":"2017-11-21T13:49:20.962+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370209, + "value":"No", + "question_id":12895, + "created_at":"2017-11-23T14:08:05.933+01:00", + "updated_at":"2017-11-23T14:08:05.933+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370762, + "value":"No", + "question_id":12895, + "created_at":"2017-11-27T09:35:24.564+01:00", + "updated_at":"2017-11-27T09:35:24.564+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371123, + "value":"Yes", + "question_id":12895, + "created_at":"2017-11-27T13:47:32.664+01:00", + "updated_at":"2017-11-27T13:47:32.664+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371763, + "value":"Yes", + "question_id":12895, + "created_at":"2017-11-28T13:17:13.093+01:00", + "updated_at":"2017-11-28T13:17:13.093+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":373092, + "value":"No", + "question_id":12895, + "created_at":"2017-12-01T15:42:03.705+01:00", + "updated_at":"2017-12-01T15:42:03.705+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":373179, + "value":"Planned", + "question_id":12895, + "created_at":"2017-12-01T17:31:00.809+01:00", + "updated_at":"2017-12-01T17:31:00.809+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373251, + "value":"Planned", + "question_id":12895, + "created_at":"2017-12-04T11:13:26.748+01:00", + "updated_at":"2017-12-04T11:13:26.748+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373695, + "value":"No", + "question_id":12895, + "created_at":"2017-12-04T17:57:59.744+01:00", + "updated_at":"2017-12-04T17:57:59.744+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374327, + "value":"Yes", + "question_id":12895, + "created_at":"2017-12-06T13:07:28.714+01:00", + "updated_at":"2017-12-06T13:07:28.714+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375029, + "value":"Yes", + "question_id":12895, + "created_at":"2017-12-14T14:20:57.473+01:00", + "updated_at":"2017-12-14T14:20:57.473+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375347, + "value":"Yes", + "question_id":12895, + "created_at":"2017-12-27T14:48:39.223+01:00", + "updated_at":"2017-12-27T14:48:39.223+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375456, + "value":"Yes", + "question_id":12895, + "created_at":"2017-12-28T10:18:43.374+01:00", + "updated_at":"2017-12-28T10:18:43.374+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375722, + "value":"No", + "question_id":12895, + "created_at":"2018-01-18T13:25:13.811+01:00", + "updated_at":"2018-01-18T13:25:13.811+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "267":{ + "id":375973, + "value":"Planned", + "question_id":12895, + "created_at":"2018-02-13T16:51:12.063+01:00", + "updated_at":"2018-02-13T16:51:12.063+01:00", + "response_id":null, + "nren_id":267, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"AAF - Australian Access Federation", + "country_name":"Australia", + "country_code":"AU", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":378045, + "value":"", + "question_id":12895, + "created_at":"2018-04-26T10:04:41.005+02:00", + "updated_at":"2018-04-26T10:04:41.005+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":378047, + "value":"", + "question_id":12895, + "created_at":"2018-04-26T10:04:41.021+02:00", + "updated_at":"2018-04-26T10:04:41.021+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":378051, + "value":"", + "question_id":12895, + "created_at":"2018-04-26T10:04:41.051+02:00", + "updated_at":"2018-04-26T10:04:41.051+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":378052, + "value":"", + "question_id":12895, + "created_at":"2018-04-26T10:04:41.062+02:00", + "updated_at":"2018-04-26T10:04:41.062+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":378053, + "value":"", + "question_id":12895, + "created_at":"2018-04-26T10:04:41.068+02:00", + "updated_at":"2018-04-26T10:04:41.068+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":378054, + "value":"", + "question_id":12895, + "created_at":"2018-04-26T10:04:41.085+02:00", + "updated_at":"2018-04-26T10:04:41.085+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":384005, + "value":"Yes", + "question_id":12895, + "created_at":"2017-12-06T13:33:22.171+01:00", + "updated_at":"2017-12-06T13:33:22.171+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618214, + "value":"Yes", + "question_id":12895, + "created_at":"2018-10-28T18:31:27.650+01:00", + "updated_at":"2018-10-28T18:31:27.650+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641548, + "value":"No", + "question_id":12895, + "created_at":"2018-10-30T13:51:11.923+01:00", + "updated_at":"2018-10-30T13:51:11.923+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756374, + "value":"Yes", + "question_id":12895, + "created_at":"2018-11-05T14:03:59.815+01:00", + "updated_at":"2018-11-05T14:03:59.815+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":378055, + "value":"", + "question_id":12895, + "created_at":"2018-04-26T10:04:41.092+02:00", + "updated_at":"2018-04-26T10:04:41.092+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":1481998, + "value":"Yes", + "question_id":12895, + "created_at":"2020-11-10T12:22:17.462+01:00", + "updated_at":"2020-11-10T12:22:17.462+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":1494271, + "value":"No", + "question_id":12895, + "created_at":"2021-01-14T14:59:57.614+01:00", + "updated_at":"2021-01-14T14:59:57.614+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"cloud-service-end-user", + "title":"Do you offer Cloud service: end user?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Cloud storage (end user)", + "title_detailed":"Browser based virtual storage service for individuals.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365559, + "value":"Yes", + "question_id":12955, + "created_at":"2017-09-06T12:08:07.572+02:00", + "updated_at":"2017-09-06T12:08:07.572+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365671, + "value":"Yes", + "question_id":12955, + "created_at":"2017-09-07T15:30:17.094+02:00", + "updated_at":"2017-09-07T15:30:17.094+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365869, + "value":"Yes", + "question_id":12955, + "created_at":"2017-09-13T13:36:59.012+02:00", + "updated_at":"2017-09-13T13:36:59.012+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":366119, + "value":"Yes", + "question_id":12955, + "created_at":"2017-09-19T14:35:39.037+02:00", + "updated_at":"2017-09-19T14:35:39.037+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366293, + "value":"Yes", + "question_id":12955, + "created_at":"2017-09-29T13:38:18.852+02:00", + "updated_at":"2017-09-29T13:38:18.852+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366540, + "value":"Yes", + "question_id":12955, + "created_at":"2017-10-08T08:45:40.477+02:00", + "updated_at":"2017-10-08T08:45:40.477+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366738, + "value":"Yes", + "question_id":12955, + "created_at":"2017-10-10T10:49:23.223+02:00", + "updated_at":"2017-10-10T10:49:23.223+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367315, + "value":"Yes", + "question_id":12955, + "created_at":"2017-10-11T20:52:26.767+02:00", + "updated_at":"2017-10-11T20:52:26.767+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367683, + "value":"Yes", + "question_id":12955, + "created_at":"2017-10-23T19:23:56.142+02:00", + "updated_at":"2017-10-23T19:23:56.142+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367871, + "value":"Yes", + "question_id":12955, + "created_at":"2017-10-24T12:59:20.881+02:00", + "updated_at":"2017-10-24T12:59:20.881+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368614, + "value":"Yes", + "question_id":12955, + "created_at":"2017-11-02T09:52:34.145+01:00", + "updated_at":"2017-11-02T09:52:34.145+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368684, + "value":"Yes", + "question_id":12955, + "created_at":"2017-11-02T13:20:12.048+01:00", + "updated_at":"2017-11-02T13:20:12.048+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369315, + "value":"Yes", + "question_id":12955, + "created_at":"2017-11-11T20:17:22.378+01:00", + "updated_at":"2017-11-11T20:17:22.378+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369803, + "value":"Yes", + "question_id":12955, + "created_at":"2017-11-21T13:33:54.814+01:00", + "updated_at":"2017-11-21T13:33:54.814+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":369861, + "value":"Yes", + "question_id":12955, + "created_at":"2017-11-21T15:46:29.401+01:00", + "updated_at":"2017-11-21T15:46:29.401+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370117, + "value":"Yes", + "question_id":12955, + "created_at":"2017-11-23T13:36:02.240+01:00", + "updated_at":"2017-11-23T13:36:02.240+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370698, + "value":"Yes", + "question_id":12955, + "created_at":"2017-11-27T09:29:01.621+01:00", + "updated_at":"2017-11-27T09:29:01.621+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371099, + "value":"Yes", + "question_id":12955, + "created_at":"2017-11-27T13:44:05.913+01:00", + "updated_at":"2017-11-27T13:44:05.913+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371693, + "value":"Yes", + "question_id":12955, + "created_at":"2017-11-28T13:05:18.640+01:00", + "updated_at":"2017-11-28T13:05:18.640+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":372102, + "value":"Yes", + "question_id":12955, + "created_at":"2017-11-28T17:35:15.580+01:00", + "updated_at":"2017-11-28T17:35:15.580+01:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372213, + "value":"Yes", + "question_id":12955, + "created_at":"2017-11-29T11:57:12.375+01:00", + "updated_at":"2017-11-29T11:57:12.375+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":372496, + "value":"No", + "question_id":12955, + "created_at":"2017-11-29T20:20:16.477+01:00", + "updated_at":"2017-11-29T20:20:16.477+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372564, + "value":"Yes", + "question_id":12955, + "created_at":"2017-11-29T21:31:32.208+01:00", + "updated_at":"2017-11-29T21:31:32.208+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373276, + "value":"Yes", + "question_id":12955, + "created_at":"2017-12-04T11:17:09.058+01:00", + "updated_at":"2017-12-04T11:17:09.058+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373634, + "value":"Yes", + "question_id":12955, + "created_at":"2017-12-04T17:48:50.566+01:00", + "updated_at":"2017-12-04T17:48:50.566+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374218, + "value":"Yes", + "question_id":12955, + "created_at":"2017-12-06T10:53:28.388+01:00", + "updated_at":"2017-12-06T10:53:28.388+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374687, + "value":"Yes", + "question_id":12955, + "created_at":"2017-12-13T09:54:13.180+01:00", + "updated_at":"2017-12-13T09:54:13.180+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374901, + "value":"Yes", + "question_id":12955, + "created_at":"2017-12-14T12:44:37.322+01:00", + "updated_at":"2017-12-14T12:44:37.322+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":374968, + "value":"Yes", + "question_id":12955, + "created_at":"2017-12-14T14:14:27.527+01:00", + "updated_at":"2017-12-14T14:14:27.527+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375390, + "value":"Yes", + "question_id":12955, + "created_at":"2017-12-28T10:00:33.192+01:00", + "updated_at":"2017-12-28T10:00:33.192+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375784, + "value":"Yes", + "question_id":12955, + "created_at":"2018-01-22T00:37:28.683+01:00", + "updated_at":"2018-01-22T00:37:28.683+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":376270, + "value":"", + "question_id":12955, + "created_at":"2018-04-26T10:04:22.516+02:00", + "updated_at":"2018-04-26T10:04:22.516+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":376272, + "value":"", + "question_id":12955, + "created_at":"2018-04-26T10:04:22.537+02:00", + "updated_at":"2018-04-26T10:04:22.537+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":376276, + "value":"", + "question_id":12955, + "created_at":"2018-04-26T10:04:22.583+02:00", + "updated_at":"2018-04-26T10:04:22.583+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":376278, + "value":"", + "question_id":12955, + "created_at":"2018-04-26T10:04:22.603+02:00", + "updated_at":"2018-04-26T10:04:22.603+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":376279, + "value":"", + "question_id":12955, + "created_at":"2018-04-26T10:04:22.627+02:00", + "updated_at":"2018-04-26T10:04:22.627+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383945, + "value":"Yes", + "question_id":12955, + "created_at":"2017-12-05T15:42:32.266+01:00", + "updated_at":"2017-12-05T15:42:32.266+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618207, + "value":"Yes", + "question_id":12955, + "created_at":"2018-10-28T18:28:54.723+01:00", + "updated_at":"2018-10-28T18:28:54.723+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641542, + "value":"Yes", + "question_id":12955, + "created_at":"2018-10-30T13:48:26.042+01:00", + "updated_at":"2018-10-30T13:48:26.042+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":774381, + "value":"Yes", + "question_id":12955, + "created_at":"2018-11-15T12:42:09.906+01:00", + "updated_at":"2018-11-15T12:42:09.906+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":826839, + "value":"Yes", + "question_id":12955, + "created_at":"2019-09-17T09:41:27.372+02:00", + "updated_at":"2019-09-17T09:41:27.372+02:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":999963, + "value":"Yes", + "question_id":12955, + "created_at":"2019-11-03T22:50:25.739+01:00", + "updated_at":"2019-11-03T22:50:25.739+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":371477, + "value":"Yes", + "question_id":12955, + "created_at":"2017-11-27T14:59:58.067+01:00", + "updated_at":"2017-11-27T14:59:58.067+01:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"connectivity", + "title":"Do you offer IP connectivity?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"IP connectivity", + "title_detailed":"Basic IP connectivity services inc. R+E and commodity internet", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365622, + "value":"Yes", + "question_id":12897, + "created_at":"2017-09-06T12:18:04.937+02:00", + "updated_at":"2017-09-06T12:18:04.937+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365680, + "value":"Yes", + "question_id":12897, + "created_at":"2017-09-07T15:32:16.732+02:00", + "updated_at":"2017-09-07T15:32:16.732+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366579, + "value":"Yes", + "question_id":12897, + "created_at":"2017-10-08T09:16:43.782+02:00", + "updated_at":"2017-10-08T09:16:43.782+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366895, + "value":"Yes", + "question_id":12897, + "created_at":"2017-10-11T09:37:05.587+02:00", + "updated_at":"2017-10-11T09:37:05.587+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367251, + "value":"Yes", + "question_id":12897, + "created_at":"2017-10-11T14:18:46.756+02:00", + "updated_at":"2017-10-11T14:18:46.756+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367947, + "value":"Yes", + "question_id":12897, + "created_at":"2017-10-24T13:25:15.125+02:00", + "updated_at":"2017-10-24T13:25:15.125+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369233, + "value":"Yes", + "question_id":12897, + "created_at":"2017-11-10T15:38:37.393+01:00", + "updated_at":"2017-11-10T15:38:37.393+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369697, + "value":"Yes", + "question_id":12897, + "created_at":"2017-11-21T11:40:27.104+01:00", + "updated_at":"2017-11-21T11:40:27.104+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":369900, + "value":"Yes", + "question_id":12897, + "created_at":"2017-11-21T16:50:57.238+01:00", + "updated_at":"2017-11-21T16:50:57.238+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370217, + "value":"No", + "question_id":12897, + "created_at":"2017-11-23T14:09:11.709+01:00", + "updated_at":"2017-11-23T14:09:11.709+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":370361, + "value":"No", + "question_id":12897, + "created_at":"2017-11-24T16:13:27.261+01:00", + "updated_at":"2017-11-24T16:13:27.261+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371315, + "value":"Yes", + "question_id":12897, + "created_at":"2017-11-27T14:30:19.838+01:00", + "updated_at":"2017-11-27T14:30:19.838+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371770, + "value":"No", + "question_id":12897, + "created_at":"2017-11-28T13:18:15.541+01:00", + "updated_at":"2017-11-28T13:18:15.541+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372638, + "value":"Yes", + "question_id":12897, + "created_at":"2017-11-29T21:45:36.424+01:00", + "updated_at":"2017-11-29T21:45:36.424+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372758, + "value":"Yes", + "question_id":12897, + "created_at":"2017-11-30T08:33:02.720+01:00", + "updated_at":"2017-11-30T08:33:02.720+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":372809, + "value":"No", + "question_id":12897, + "created_at":"2017-11-30T08:59:17.953+01:00", + "updated_at":"2017-11-30T08:59:17.953+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373252, + "value":"Yes", + "question_id":12897, + "created_at":"2017-12-04T11:14:21.853+01:00", + "updated_at":"2017-12-04T11:14:21.853+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373703, + "value":"Yes", + "question_id":12897, + "created_at":"2017-12-04T17:59:20.466+01:00", + "updated_at":"2017-12-04T17:59:20.466+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374341, + "value":"Yes", + "question_id":12897, + "created_at":"2017-12-06T13:12:16.852+01:00", + "updated_at":"2017-12-06T13:12:16.852+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374739, + "value":"Yes", + "question_id":12897, + "created_at":"2017-12-13T11:27:16.293+01:00", + "updated_at":"2017-12-13T11:27:16.293+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375032, + "value":"Yes", + "question_id":12897, + "created_at":"2017-12-14T14:21:24.605+01:00", + "updated_at":"2017-12-14T14:21:24.605+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375462, + "value":"Yes", + "question_id":12897, + "created_at":"2017-12-28T10:19:37.647+01:00", + "updated_at":"2017-12-28T10:19:37.647+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375895, + "value":"Yes", + "question_id":12897, + "created_at":"2018-01-23T12:30:29.082+01:00", + "updated_at":"2018-01-23T12:30:29.082+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":378180, + "value":"", + "question_id":12897, + "created_at":"2018-04-26T10:04:42.055+02:00", + "updated_at":"2018-04-26T10:04:42.055+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":378182, + "value":"", + "question_id":12897, + "created_at":"2018-04-26T10:04:42.073+02:00", + "updated_at":"2018-04-26T10:04:42.073+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":378186, + "value":"", + "question_id":12897, + "created_at":"2018-04-26T10:04:42.114+02:00", + "updated_at":"2018-04-26T10:04:42.114+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":378187, + "value":"", + "question_id":12897, + "created_at":"2018-04-26T10:04:42.128+02:00", + "updated_at":"2018-04-26T10:04:42.128+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":378188, + "value":"", + "question_id":12897, + "created_at":"2018-04-26T10:04:42.137+02:00", + "updated_at":"2018-04-26T10:04:42.137+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":378189, + "value":"", + "question_id":12897, + "created_at":"2018-04-26T10:04:42.145+02:00", + "updated_at":"2018-04-26T10:04:42.145+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":378191, + "value":"", + "question_id":12897, + "created_at":"2018-04-26T10:04:42.171+02:00", + "updated_at":"2018-04-26T10:04:42.171+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":384007, + "value":"Yes", + "question_id":12897, + "created_at":"2017-12-05T15:57:43.997+01:00", + "updated_at":"2017-12-05T15:57:43.997+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":463855, + "value":"Yes", + "question_id":12897, + "created_at":"2018-10-11T14:53:38.787+02:00", + "updated_at":"2018-10-11T14:53:38.787+02:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618220, + "value":"Yes", + "question_id":12897, + "created_at":"2018-10-28T18:33:31.991+01:00", + "updated_at":"2018-10-28T18:33:31.991+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756379, + "value":"Yes", + "question_id":12897, + "created_at":"2018-11-05T14:05:29.202+01:00", + "updated_at":"2018-11-05T14:05:29.202+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":1248626, + "value":"Yes", + "question_id":12897, + "created_at":"2019-12-02T17:29:39.882+01:00", + "updated_at":"2019-12-02T17:29:39.882+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":378192, + "value":"", + "question_id":12897, + "created_at":"2018-04-26T10:04:42.183+02:00", + "updated_at":"2018-04-26T10:04:42.183+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":1470693, + "value":"Yes", + "question_id":12897, + "created_at":"2020-10-16T13:57:49.735+02:00", + "updated_at":"2020-10-16T13:57:49.735+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":1482002, + "value":"Yes", + "question_id":12897, + "created_at":"2020-11-10T12:24:20.929+01:00", + "updated_at":"2020-11-10T12:24:20.929+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":1488523, + "value":"Yes", + "question_id":12897, + "created_at":"2020-11-27T09:50:43.063+01:00", + "updated_at":"2020-11-27T09:50:43.063+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":1493629, + "value":"Yes", + "question_id":12897, + "created_at":"2020-12-18T14:47:42.109+01:00", + "updated_at":"2020-12-18T14:47:42.109+01:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":1496991, + "value":"Yes", + "question_id":12897, + "created_at":"2021-08-31T08:41:08.475+02:00", + "updated_at":"2021-08-31T08:41:08.475+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":1500366, + "value":"Yes", + "question_id":12897, + "created_at":"2021-11-08T12:27:53.740+01:00", + "updated_at":"2021-11-08T12:27:53.740+01:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":1518023, + "value":"Yes", + "question_id":12897, + "created_at":"2022-10-10T14:42:19.749+02:00", + "updated_at":"2022-10-10T14:42:19.749+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"consultancy", + "title":"Do you offer Consultancy and training services?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Consultancy/training", + "title_detailed":"Training and consultancy services provided by the NREN.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365648, + "value":"No", + "question_id":12899, + "created_at":"2017-09-06T12:19:39.225+02:00", + "updated_at":"2017-09-06T12:19:39.225+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366377, + "value":"No", + "question_id":12899, + "created_at":"2017-09-29T13:53:42.185+02:00", + "updated_at":"2017-09-29T13:53:42.185+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366868, + "value":"Yes", + "question_id":12899, + "created_at":"2017-10-11T09:34:56.852+02:00", + "updated_at":"2017-10-11T09:34:56.852+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366953, + "value":"No", + "question_id":12899, + "created_at":"2017-10-11T10:51:56.660+02:00", + "updated_at":"2017-10-11T10:51:56.660+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367158, + "value":"No", + "question_id":12899, + "created_at":"2017-10-11T13:45:22.297+02:00", + "updated_at":"2017-10-11T13:45:22.297+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367512, + "value":"No", + "question_id":12899, + "created_at":"2017-10-17T12:09:24.527+02:00", + "updated_at":"2017-10-17T12:09:24.527+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367768, + "value":"No", + "question_id":12899, + "created_at":"2017-10-23T19:40:32.617+02:00", + "updated_at":"2017-10-23T19:40:32.617+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367972, + "value":"No", + "question_id":12899, + "created_at":"2017-10-24T13:31:57.892+02:00", + "updated_at":"2017-10-24T13:31:57.892+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368372, + "value":"Yes", + "question_id":12899, + "created_at":"2017-10-31T08:58:37.616+01:00", + "updated_at":"2017-10-31T08:58:37.616+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368569, + "value":"No", + "question_id":12899, + "created_at":"2017-10-31T14:42:33.236+01:00", + "updated_at":"2017-10-31T14:42:33.236+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369257, + "value":"Yes", + "question_id":12899, + "created_at":"2017-11-10T15:40:41.408+01:00", + "updated_at":"2017-11-10T15:40:41.408+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369821, + "value":"No", + "question_id":12899, + "created_at":"2017-11-21T13:46:29.321+01:00", + "updated_at":"2017-11-21T13:46:29.321+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370247, + "value":"No", + "question_id":12899, + "created_at":"2017-11-23T14:13:26.077+01:00", + "updated_at":"2017-11-23T14:13:26.077+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370796, + "value":"No", + "question_id":12899, + "created_at":"2017-11-27T09:38:00.980+01:00", + "updated_at":"2017-11-27T09:38:00.980+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371134, + "value":"Yes", + "question_id":12899, + "created_at":"2017-11-27T13:57:14.438+01:00", + "updated_at":"2017-11-27T13:57:14.438+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371251, + "value":"No", + "question_id":12899, + "created_at":"2017-11-27T14:21:43.617+01:00", + "updated_at":"2017-11-27T14:21:43.617+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371798, + "value":"No", + "question_id":12899, + "created_at":"2017-11-28T13:19:47.741+01:00", + "updated_at":"2017-11-28T13:19:47.741+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372342, + "value":"No", + "question_id":12899, + "created_at":"2017-11-29T12:35:31.351+01:00", + "updated_at":"2017-11-29T12:35:31.351+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372666, + "value":"No", + "question_id":12899, + "created_at":"2017-11-29T21:49:18.093+01:00", + "updated_at":"2017-11-29T21:49:18.093+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373729, + "value":"No", + "question_id":12899, + "created_at":"2017-12-04T18:02:07.042+01:00", + "updated_at":"2017-12-04T18:02:07.042+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374073, + "value":"No", + "question_id":12899, + "created_at":"2017-12-06T07:28:18.915+01:00", + "updated_at":"2017-12-06T07:28:18.915+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374392, + "value":"No", + "question_id":12899, + "created_at":"2017-12-06T13:26:12.815+01:00", + "updated_at":"2017-12-06T13:26:12.815+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375505, + "value":"Yes", + "question_id":12899, + "created_at":"2017-12-28T10:37:13.396+01:00", + "updated_at":"2017-12-28T10:37:13.396+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375684, + "value":"No", + "question_id":12899, + "created_at":"2018-01-08T16:02:10.726+01:00", + "updated_at":"2018-01-08T16:02:10.726+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375736, + "value":"No", + "question_id":12899, + "created_at":"2018-01-18T13:32:13.870+01:00", + "updated_at":"2018-01-18T13:32:13.870+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":379360, + "value":"", + "question_id":12899, + "created_at":"2018-04-26T10:04:52.979+02:00", + "updated_at":"2018-04-26T10:04:52.979+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":379361, + "value":"", + "question_id":12899, + "created_at":"2018-04-26T10:04:52.992+02:00", + "updated_at":"2018-04-26T10:04:52.992+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":379362, + "value":"", + "question_id":12899, + "created_at":"2018-04-26T10:04:52.999+02:00", + "updated_at":"2018-04-26T10:04:52.999+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":379365, + "value":"", + "question_id":12899, + "created_at":"2018-04-26T10:04:53.022+02:00", + "updated_at":"2018-04-26T10:04:53.022+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":379366, + "value":"", + "question_id":12899, + "created_at":"2018-04-26T10:04:53.030+02:00", + "updated_at":"2018-04-26T10:04:53.030+02:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":379367, + "value":"", + "question_id":12899, + "created_at":"2018-04-26T10:04:53.045+02:00", + "updated_at":"2018-04-26T10:04:53.045+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":379368, + "value":"", + "question_id":12899, + "created_at":"2018-04-26T10:04:53.058+02:00", + "updated_at":"2018-04-26T10:04:53.058+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":379369, + "value":"", + "question_id":12899, + "created_at":"2018-04-26T10:04:53.065+02:00", + "updated_at":"2018-04-26T10:04:53.065+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":379370, + "value":"", + "question_id":12899, + "created_at":"2018-04-26T10:04:53.073+02:00", + "updated_at":"2018-04-26T10:04:53.073+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":379371, + "value":"", + "question_id":12899, + "created_at":"2018-04-26T10:04:53.080+02:00", + "updated_at":"2018-04-26T10:04:53.080+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":379372, + "value":"", + "question_id":12899, + "created_at":"2018-04-26T10:04:53.094+02:00", + "updated_at":"2018-04-26T10:04:53.094+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":379373, + "value":"", + "question_id":12899, + "created_at":"2018-04-26T10:04:53.105+02:00", + "updated_at":"2018-04-26T10:04:53.105+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":379375, + "value":"", + "question_id":12899, + "created_at":"2018-04-26T10:04:53.122+02:00", + "updated_at":"2018-04-26T10:04:53.122+02:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756406, + "value":"Yes", + "question_id":12899, + "created_at":"2018-11-05T14:33:59.122+01:00", + "updated_at":"2018-11-05T14:33:59.122+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":964665, + "value":"No", + "question_id":12899, + "created_at":"2019-10-31T14:46:13.235+01:00", + "updated_at":"2019-10-31T14:46:13.235+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":379374, + "value":"", + "question_id":12899, + "created_at":"2018-04-26T10:04:53.115+02:00", + "updated_at":"2018-04-26T10:04:53.115+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1517913, + "value":"No", + "question_id":12899, + "created_at":"2022-09-29T14:43:27.159+02:00", + "updated_at":"2022-09-29T14:43:27.159+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-delivery-hosting", + "title":"Do you offer Content delivery hosting?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Content delivery hosting", + "title_detailed":"Hosting of content delivery servers e.g. Akamai.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365649, + "value":"No", + "question_id":12901, + "created_at":"2017-09-06T12:19:41.714+02:00", + "updated_at":"2017-09-06T12:19:41.714+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":366194, + "value":"No", + "question_id":12901, + "created_at":"2017-09-26T09:19:39.902+02:00", + "updated_at":"2017-09-26T09:19:39.902+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366378, + "value":"No", + "question_id":12901, + "created_at":"2017-09-29T13:53:47.688+02:00", + "updated_at":"2017-09-29T13:53:47.688+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366954, + "value":"Yes", + "question_id":12901, + "created_at":"2017-10-11T10:52:06.931+02:00", + "updated_at":"2017-10-11T10:52:06.931+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366866, + "value":"No", + "question_id":12901, + "created_at":"2017-10-11T09:34:52.871+02:00", + "updated_at":"2017-10-11T09:34:52.871+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367159, + "value":"No", + "question_id":12901, + "created_at":"2017-10-11T13:45:32.795+02:00", + "updated_at":"2017-10-11T13:45:32.795+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367513, + "value":"No", + "question_id":12901, + "created_at":"2017-10-17T12:09:37.623+02:00", + "updated_at":"2017-10-17T12:09:37.623+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367769, + "value":"No", + "question_id":12901, + "created_at":"2017-10-23T19:40:36.154+02:00", + "updated_at":"2017-10-23T19:40:36.154+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367973, + "value":"No", + "question_id":12901, + "created_at":"2017-10-24T13:32:07.584+02:00", + "updated_at":"2017-10-24T13:32:07.584+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368374, + "value":"No", + "question_id":12901, + "created_at":"2017-10-31T08:58:59.956+01:00", + "updated_at":"2017-10-31T08:58:59.956+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368568, + "value":"No", + "question_id":12901, + "created_at":"2017-10-31T14:42:31.473+01:00", + "updated_at":"2017-10-31T14:42:31.473+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368947, + "value":"No", + "question_id":12901, + "created_at":"2017-11-08T15:52:40.632+01:00", + "updated_at":"2017-11-08T15:52:40.632+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369258, + "value":"Yes", + "question_id":12901, + "created_at":"2017-11-10T15:40:46.893+01:00", + "updated_at":"2017-11-10T15:40:46.893+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369819, + "value":"No", + "question_id":12901, + "created_at":"2017-11-21T13:46:16.018+01:00", + "updated_at":"2017-11-21T13:46:16.018+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370248, + "value":"No", + "question_id":12901, + "created_at":"2017-11-23T14:13:30.252+01:00", + "updated_at":"2017-11-23T14:13:30.252+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":370404, + "value":"No", + "question_id":12901, + "created_at":"2017-11-24T16:44:10.685+01:00", + "updated_at":"2017-11-24T16:44:10.685+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370797, + "value":"No", + "question_id":12901, + "created_at":"2017-11-27T09:38:02.784+01:00", + "updated_at":"2017-11-27T09:38:02.784+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371135, + "value":"No", + "question_id":12901, + "created_at":"2017-11-27T13:57:23.764+01:00", + "updated_at":"2017-11-27T13:57:23.764+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371249, + "value":"No", + "question_id":12901, + "created_at":"2017-11-27T14:21:35.467+01:00", + "updated_at":"2017-11-27T14:21:35.467+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371799, + "value":"No", + "question_id":12901, + "created_at":"2017-11-28T13:19:49.143+01:00", + "updated_at":"2017-11-28T13:19:49.143+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372344, + "value":"Yes", + "question_id":12901, + "created_at":"2017-11-29T12:35:39.860+01:00", + "updated_at":"2017-11-29T12:35:39.860+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372667, + "value":"No", + "question_id":12901, + "created_at":"2017-11-29T21:49:22.353+01:00", + "updated_at":"2017-11-29T21:49:22.353+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373273, + "value":"Yes", + "question_id":12901, + "created_at":"2017-12-04T11:16:48.370+01:00", + "updated_at":"2017-12-04T11:16:48.370+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373730, + "value":"Yes", + "question_id":12901, + "created_at":"2017-12-04T18:02:15.671+01:00", + "updated_at":"2017-12-04T18:02:15.671+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374728, + "value":"Yes", + "question_id":12901, + "created_at":"2017-12-13T11:17:22.064+01:00", + "updated_at":"2017-12-13T11:17:22.064+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375485, + "value":"Yes", + "question_id":12901, + "created_at":"2017-12-28T10:23:45.895+01:00", + "updated_at":"2017-12-28T10:23:45.895+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":379412, + "value":"", + "question_id":12901, + "created_at":"2018-04-26T10:04:53.497+02:00", + "updated_at":"2018-04-26T10:04:53.497+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":379413, + "value":"", + "question_id":12901, + "created_at":"2018-04-26T10:04:53.510+02:00", + "updated_at":"2018-04-26T10:04:53.510+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":379414, + "value":"", + "question_id":12901, + "created_at":"2018-04-26T10:04:53.518+02:00", + "updated_at":"2018-04-26T10:04:53.518+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":379416, + "value":"", + "question_id":12901, + "created_at":"2018-04-26T10:04:53.535+02:00", + "updated_at":"2018-04-26T10:04:53.535+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":379417, + "value":"", + "question_id":12901, + "created_at":"2018-04-26T10:04:53.543+02:00", + "updated_at":"2018-04-26T10:04:53.543+02:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":379418, + "value":"", + "question_id":12901, + "created_at":"2018-04-26T10:04:53.559+02:00", + "updated_at":"2018-04-26T10:04:53.559+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":379420, + "value":"", + "question_id":12901, + "created_at":"2018-04-26T10:04:53.578+02:00", + "updated_at":"2018-04-26T10:04:53.578+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":379421, + "value":"", + "question_id":12901, + "created_at":"2018-04-26T10:04:53.586+02:00", + "updated_at":"2018-04-26T10:04:53.586+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":379422, + "value":"", + "question_id":12901, + "created_at":"2018-04-26T10:04:53.601+02:00", + "updated_at":"2018-04-26T10:04:53.601+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":379423, + "value":"", + "question_id":12901, + "created_at":"2018-04-26T10:04:53.612+02:00", + "updated_at":"2018-04-26T10:04:53.612+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":379424, + "value":"", + "question_id":12901, + "created_at":"2018-04-26T10:04:53.619+02:00", + "updated_at":"2018-04-26T10:04:53.619+02:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":379426, + "value":"", + "question_id":12901, + "created_at":"2018-04-26T10:04:53.635+02:00", + "updated_at":"2018-04-26T10:04:53.635+02:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383928, + "value":"Yes", + "question_id":12901, + "created_at":"2017-12-06T13:43:57.524+01:00", + "updated_at":"2017-12-06T13:43:57.524+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":379425, + "value":"", + "question_id":12901, + "created_at":"2018-04-26T10:04:53.628+02:00", + "updated_at":"2018-04-26T10:04:53.628+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1483388, + "value":"No", + "question_id":12901, + "created_at":"2020-11-16T13:56:10.170+01:00", + "updated_at":"2020-11-16T13:56:10.170+01:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":1502661, + "value":"No", + "question_id":12901, + "created_at":"2021-11-16T00:43:58.774+01:00", + "updated_at":"2021-11-16T00:43:58.774+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":1518022, + "value":"Yes", + "question_id":12901, + "created_at":"2022-10-10T14:39:57.063+02:00", + "updated_at":"2022-10-10T14:39:57.063+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"content-management-system", + "title":"Do you provide Content Management System?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"CMS", + "title_detailed":"Provision of software systems for website authoring, collaboration and administration tools.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365578, + "value":"Yes", + "question_id":12903, + "created_at":"2017-09-06T12:13:03.086+02:00", + "updated_at":"2017-09-06T12:13:03.086+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365675, + "value":"Yes", + "question_id":12903, + "created_at":"2017-09-07T15:31:21.916+02:00", + "updated_at":"2017-09-07T15:31:21.916+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365890, + "value":"Yes", + "question_id":12903, + "created_at":"2017-09-13T13:41:43.938+02:00", + "updated_at":"2017-09-13T13:41:43.938+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":366148, + "value":"Yes", + "question_id":12903, + "created_at":"2017-09-19T14:55:33.311+02:00", + "updated_at":"2017-09-19T14:55:33.311+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366557, + "value":"Yes", + "question_id":12903, + "created_at":"2017-10-08T09:09:44.031+02:00", + "updated_at":"2017-10-08T09:09:44.031+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366746, + "value":"Yes", + "question_id":12903, + "created_at":"2017-10-10T12:47:33.159+02:00", + "updated_at":"2017-10-10T12:47:33.159+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367303, + "value":"Yes", + "question_id":12903, + "created_at":"2017-10-11T20:49:27.626+02:00", + "updated_at":"2017-10-11T20:49:27.626+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367705, + "value":"Yes", + "question_id":12903, + "created_at":"2017-10-23T19:26:03.517+02:00", + "updated_at":"2017-10-23T19:26:03.517+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367898, + "value":"Yes", + "question_id":12903, + "created_at":"2017-10-24T13:08:37.120+02:00", + "updated_at":"2017-10-24T13:08:37.120+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":368154, + "value":"Yes", + "question_id":12903, + "created_at":"2017-10-30T09:18:57.880+01:00", + "updated_at":"2017-10-30T09:18:57.880+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":368225, + "value":"Yes", + "question_id":12903, + "created_at":"2017-10-30T12:40:40.357+01:00", + "updated_at":"2017-10-30T12:40:40.357+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368384, + "value":"Yes", + "question_id":12903, + "created_at":"2017-10-31T13:02:05.327+01:00", + "updated_at":"2017-10-31T13:02:05.327+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368714, + "value":"Yes", + "question_id":12903, + "created_at":"2017-11-02T13:22:44.322+01:00", + "updated_at":"2017-11-02T13:22:44.322+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":369103, + "value":"Yes", + "question_id":12903, + "created_at":"2017-11-10T14:28:55.393+01:00", + "updated_at":"2017-11-10T14:28:55.393+01:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369189, + "value":"Yes", + "question_id":12903, + "created_at":"2017-11-10T15:32:41.512+01:00", + "updated_at":"2017-11-10T15:32:41.512+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369351, + "value":"Yes", + "question_id":12903, + "created_at":"2017-11-11T20:34:22.040+01:00", + "updated_at":"2017-11-11T20:34:22.040+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370155, + "value":"Yes", + "question_id":12903, + "created_at":"2017-11-23T13:52:04.461+01:00", + "updated_at":"2017-11-23T13:52:04.461+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370724, + "value":"Yes", + "question_id":12903, + "created_at":"2017-11-27T09:31:50.992+01:00", + "updated_at":"2017-11-27T09:31:50.992+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370927, + "value":"Yes", + "question_id":12903, + "created_at":"2017-11-27T10:36:15.554+01:00", + "updated_at":"2017-11-27T10:36:15.554+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371329, + "value":"Yes", + "question_id":12903, + "created_at":"2017-11-27T14:32:03.794+01:00", + "updated_at":"2017-11-27T14:32:03.794+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371722, + "value":"Yes", + "question_id":12903, + "created_at":"2017-11-28T13:08:32.615+01:00", + "updated_at":"2017-11-28T13:08:32.615+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372254, + "value":"Yes", + "question_id":12903, + "created_at":"2017-11-29T12:15:57.069+01:00", + "updated_at":"2017-11-29T12:15:57.069+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372588, + "value":"Yes", + "question_id":12903, + "created_at":"2017-11-29T21:36:02.898+01:00", + "updated_at":"2017-11-29T21:36:02.898+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373663, + "value":"Yes", + "question_id":12903, + "created_at":"2017-12-04T17:53:15.290+01:00", + "updated_at":"2017-12-04T17:53:15.290+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374035, + "value":"Planned", + "question_id":12903, + "created_at":"2017-12-06T06:57:21.916+01:00", + "updated_at":"2017-12-06T06:57:21.916+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374257, + "value":"No", + "question_id":12903, + "created_at":"2017-12-06T11:11:31.945+01:00", + "updated_at":"2017-12-06T11:11:31.945+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374688, + "value":"Yes", + "question_id":12903, + "created_at":"2017-12-13T09:55:13.655+01:00", + "updated_at":"2017-12-13T09:55:13.655+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":374997, + "value":"Yes", + "question_id":12903, + "created_at":"2017-12-14T14:18:24.000+01:00", + "updated_at":"2017-12-14T14:18:24.000+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375420, + "value":"Yes", + "question_id":12903, + "created_at":"2017-12-28T10:06:01.015+01:00", + "updated_at":"2017-12-28T10:06:01.015+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375709, + "value":"Yes", + "question_id":12903, + "created_at":"2018-01-18T13:21:08.733+01:00", + "updated_at":"2018-01-18T13:21:08.733+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377003, + "value":"", + "question_id":12903, + "created_at":"2018-04-26T10:04:30.991+02:00", + "updated_at":"2018-04-26T10:04:30.991+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377005, + "value":"", + "question_id":12903, + "created_at":"2018-04-26T10:04:31.007+02:00", + "updated_at":"2018-04-26T10:04:31.007+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":377009, + "value":"", + "question_id":12903, + "created_at":"2018-04-26T10:04:31.036+02:00", + "updated_at":"2018-04-26T10:04:31.036+02:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":377010, + "value":"", + "question_id":12903, + "created_at":"2018-04-26T10:04:31.053+02:00", + "updated_at":"2018-04-26T10:04:31.053+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377011, + "value":"", + "question_id":12903, + "created_at":"2018-04-26T10:04:31.067+02:00", + "updated_at":"2018-04-26T10:04:31.067+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":377012, + "value":"", + "question_id":12903, + "created_at":"2018-04-26T10:04:31.075+02:00", + "updated_at":"2018-04-26T10:04:31.075+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377013, + "value":"", + "question_id":12903, + "created_at":"2018-04-26T10:04:31.094+02:00", + "updated_at":"2018-04-26T10:04:31.094+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":384000, + "value":"Yes", + "question_id":12903, + "created_at":"2017-12-05T15:45:34.789+01:00", + "updated_at":"2017-12-05T15:45:34.789+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618210, + "value":"Yes", + "question_id":12903, + "created_at":"2018-10-28T18:29:46.093+01:00", + "updated_at":"2018-10-28T18:29:46.093+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756370, + "value":"Yes", + "question_id":12903, + "created_at":"2018-11-05T14:02:48.808+01:00", + "updated_at":"2018-11-05T14:02:48.808+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377014, + "value":"", + "question_id":12903, + "created_at":"2018-04-26T10:04:31.104+02:00", + "updated_at":"2018-04-26T10:04:31.104+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":1493606, + "value":"Yes", + "question_id":12903, + "created_at":"2020-12-18T14:40:02.158+01:00", + "updated_at":"2020-12-18T14:40:02.158+01:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":1501057, + "value":"Planned", + "question_id":12903, + "created_at":"2021-11-09T16:14:00.888+01:00", + "updated_at":"2021-11-09T16:14:00.888+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"csirt", + "title":"Do you offer CSIRT/CERT?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"CERT/CSIRT", + "title_detailed":"A single point of contact for users to deal with computer security incidents and prevention.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "16":{ + "id":366149, + "value":"Yes", + "question_id":12913, + "created_at":"2017-09-19T14:55:42.615+02:00", + "updated_at":"2017-09-19T14:55:42.615+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366747, + "value":"Yes", + "question_id":12913, + "created_at":"2017-10-10T12:48:26.221+02:00", + "updated_at":"2017-10-10T12:48:26.221+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366914, + "value":"Yes", + "question_id":12913, + "created_at":"2017-10-11T10:42:08.417+02:00", + "updated_at":"2017-10-11T10:42:08.417+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367706, + "value":"Yes", + "question_id":12913, + "created_at":"2017-10-23T19:26:07.150+02:00", + "updated_at":"2017-10-23T19:26:07.150+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367900, + "value":"Yes", + "question_id":12913, + "created_at":"2017-10-24T13:09:04.563+02:00", + "updated_at":"2017-10-24T13:09:04.563+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":368226, + "value":"Yes", + "question_id":12913, + "created_at":"2017-10-30T12:40:55.633+01:00", + "updated_at":"2017-10-30T12:40:55.633+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368386, + "value":"Yes", + "question_id":12913, + "created_at":"2017-10-31T13:03:00.039+01:00", + "updated_at":"2017-10-31T13:03:00.039+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368715, + "value":"Yes", + "question_id":12913, + "created_at":"2017-11-02T13:22:49.891+01:00", + "updated_at":"2017-11-02T13:22:49.891+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369190, + "value":"Yes", + "question_id":12913, + "created_at":"2017-11-10T15:32:45.256+01:00", + "updated_at":"2017-11-10T15:32:45.256+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369354, + "value":"Yes", + "question_id":12913, + "created_at":"2017-11-11T20:35:02.701+01:00", + "updated_at":"2017-11-11T20:35:02.701+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370157, + "value":"Yes", + "question_id":12913, + "created_at":"2017-11-23T13:52:44.249+01:00", + "updated_at":"2017-11-23T13:52:44.249+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370930, + "value":"Planned", + "question_id":12913, + "created_at":"2017-11-27T10:36:41.000+01:00", + "updated_at":"2017-11-27T10:36:41.000+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371151, + "value":"Yes", + "question_id":12913, + "created_at":"2017-11-27T14:04:47.531+01:00", + "updated_at":"2017-11-27T14:04:47.531+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372248, + "value":"Yes", + "question_id":12913, + "created_at":"2017-11-29T12:04:37.142+01:00", + "updated_at":"2017-11-29T12:04:37.142+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372589, + "value":"Yes", + "question_id":12913, + "created_at":"2017-11-29T21:36:09.530+01:00", + "updated_at":"2017-11-29T21:36:09.530+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372743, + "value":"Yes", + "question_id":12913, + "created_at":"2017-11-30T08:28:03.659+01:00", + "updated_at":"2017-11-30T08:28:03.659+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373664, + "value":"No", + "question_id":12913, + "created_at":"2017-12-04T17:53:21.848+01:00", + "updated_at":"2017-12-04T17:53:21.848+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374036, + "value":"Planned", + "question_id":12913, + "created_at":"2017-12-06T06:57:24.660+01:00", + "updated_at":"2017-12-06T06:57:24.660+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374259, + "value":"Planned", + "question_id":12913, + "created_at":"2017-12-06T11:11:51.479+01:00", + "updated_at":"2017-12-06T11:11:51.479+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375336, + "value":"Yes", + "question_id":12913, + "created_at":"2017-12-27T14:45:25.923+01:00", + "updated_at":"2017-12-27T14:45:25.923+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375421, + "value":"Yes", + "question_id":12913, + "created_at":"2017-12-28T10:06:04.225+01:00", + "updated_at":"2017-12-28T10:06:04.225+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375711, + "value":"Yes", + "question_id":12913, + "created_at":"2018-01-18T13:21:30.780+01:00", + "updated_at":"2018-01-18T13:21:30.780+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":376006, + "value":"Yes", + "question_id":12913, + "created_at":"2018-02-16T09:43:46.718+01:00", + "updated_at":"2018-02-16T09:43:46.718+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377037, + "value":"", + "question_id":12913, + "created_at":"2018-04-26T10:04:31.421+02:00", + "updated_at":"2018-04-26T10:04:31.421+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377039, + "value":"", + "question_id":12913, + "created_at":"2018-04-26T10:04:31.441+02:00", + "updated_at":"2018-04-26T10:04:31.441+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":377043, + "value":"", + "question_id":12913, + "created_at":"2018-04-26T10:04:31.490+02:00", + "updated_at":"2018-04-26T10:04:31.490+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377044, + "value":"", + "question_id":12913, + "created_at":"2018-04-26T10:04:31.505+02:00", + "updated_at":"2018-04-26T10:04:31.505+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":377045, + "value":"", + "question_id":12913, + "created_at":"2018-04-26T10:04:31.515+02:00", + "updated_at":"2018-04-26T10:04:31.515+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":377046, + "value":"", + "question_id":12913, + "created_at":"2018-04-26T10:04:31.524+02:00", + "updated_at":"2018-04-26T10:04:31.524+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377047, + "value":"", + "question_id":12913, + "created_at":"2018-04-26T10:04:31.546+02:00", + "updated_at":"2018-04-26T10:04:31.546+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618221, + "value":"Yes", + "question_id":12913, + "created_at":"2018-10-28T18:33:50.723+01:00", + "updated_at":"2018-10-28T18:33:50.723+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756376, + "value":"Yes", + "question_id":12913, + "created_at":"2018-11-05T14:04:35.860+01:00", + "updated_at":"2018-11-05T14:04:35.860+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":774392, + "value":"Yes", + "question_id":12913, + "created_at":"2018-11-15T12:46:08.533+01:00", + "updated_at":"2018-11-15T12:46:08.533+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":797997, + "value":"Planned", + "question_id":12913, + "created_at":"2018-11-27T19:09:51.795+01:00", + "updated_at":"2018-11-27T19:09:51.795+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":827096, + "value":"Yes", + "question_id":12913, + "created_at":"2019-10-02T17:03:25.526+02:00", + "updated_at":"2019-10-02T17:03:25.526+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377048, + "value":"", + "question_id":12913, + "created_at":"2018-04-26T10:04:31.557+02:00", + "updated_at":"2018-04-26T10:04:31.557+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":1483500, + "value":"Yes", + "question_id":12913, + "created_at":"2020-11-16T14:07:07.915+01:00", + "updated_at":"2020-11-16T14:07:07.915+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":1488526, + "value":"Yes", + "question_id":12913, + "created_at":"2020-11-27T09:56:03.361+01:00", + "updated_at":"2020-11-27T09:56:03.361+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":1494270, + "value":"Yes", + "question_id":12913, + "created_at":"2021-01-14T14:59:09.689+01:00", + "updated_at":"2021-01-14T14:59:09.689+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":1503256, + "value":"Planned", + "question_id":12913, + "created_at":"2021-11-17T08:08:13.509+01:00", + "updated_at":"2021-11-17T08:08:13.509+01:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "48":{ + "id":1504163, + "value":"Yes", + "question_id":12913, + "created_at":"2021-11-17T17:00:33.106+01:00", + "updated_at":"2021-11-17T17:00:33.106+01:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1517911, + "value":"Yes", + "question_id":12913, + "created_at":"2022-09-29T14:37:22.515+02:00", + "updated_at":"2022-09-29T14:37:22.515+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ddos-prevention", + "title":"Do you offer DDoS mitigation?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"DDos mitigation", + "title_detailed":"Tools and techniques for mitigating Distributed Denial of Service attacks.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365587, + "value":"Yes", + "question_id":12915, + "created_at":"2017-09-06T12:14:05.904+02:00", + "updated_at":"2017-09-06T12:14:05.904+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365897, + "value":"No", + "question_id":12915, + "created_at":"2017-09-13T13:42:40.864+02:00", + "updated_at":"2017-09-13T13:42:40.864+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":366154, + "value":"Yes", + "question_id":12915, + "created_at":"2017-09-19T14:57:38.895+02:00", + "updated_at":"2017-09-19T14:57:38.895+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366612, + "value":"Yes", + "question_id":12915, + "created_at":"2017-10-08T09:22:05.747+02:00", + "updated_at":"2017-10-08T09:22:05.747+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366754, + "value":"Yes", + "question_id":12915, + "created_at":"2017-10-10T12:54:34.595+02:00", + "updated_at":"2017-10-10T12:54:34.595+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367304, + "value":"Yes", + "question_id":12915, + "created_at":"2017-10-11T20:49:59.580+02:00", + "updated_at":"2017-10-11T20:49:59.580+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367714, + "value":"Yes", + "question_id":12915, + "created_at":"2017-10-23T19:27:05.730+02:00", + "updated_at":"2017-10-23T19:27:05.730+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367915, + "value":"Yes", + "question_id":12915, + "created_at":"2017-10-24T13:15:40.975+02:00", + "updated_at":"2017-10-24T13:15:40.975+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":368163, + "value":"Yes", + "question_id":12915, + "created_at":"2017-10-30T09:20:07.654+01:00", + "updated_at":"2017-10-30T09:20:07.654+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368729, + "value":"Yes", + "question_id":12915, + "created_at":"2017-11-02T13:23:48.412+01:00", + "updated_at":"2017-11-02T13:23:48.412+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368801, + "value":"Yes", + "question_id":12915, + "created_at":"2017-11-06T16:13:04.048+01:00", + "updated_at":"2017-11-06T16:13:04.048+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369200, + "value":"Yes", + "question_id":12915, + "created_at":"2017-11-10T15:34:02.835+01:00", + "updated_at":"2017-11-10T15:34:02.835+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369371, + "value":"Yes", + "question_id":12915, + "created_at":"2017-11-11T20:41:01.600+01:00", + "updated_at":"2017-11-11T20:41:01.600+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369846, + "value":"No", + "question_id":12915, + "created_at":"2017-11-21T14:57:52.429+01:00", + "updated_at":"2017-11-21T14:57:52.429+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370174, + "value":"Yes", + "question_id":12915, + "created_at":"2017-11-23T13:58:35.583+01:00", + "updated_at":"2017-11-23T13:58:35.583+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370739, + "value":"No", + "question_id":12915, + "created_at":"2017-11-27T09:32:48.393+01:00", + "updated_at":"2017-11-27T09:32:48.393+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370939, + "value":"No", + "question_id":12915, + "created_at":"2017-11-27T10:37:52.747+01:00", + "updated_at":"2017-11-27T10:37:52.747+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371373, + "value":"No", + "question_id":12915, + "created_at":"2017-11-27T14:37:32.920+01:00", + "updated_at":"2017-11-27T14:37:32.920+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371564, + "value":"Yes", + "question_id":12915, + "created_at":"2017-11-27T16:38:01.869+01:00", + "updated_at":"2017-11-27T16:38:01.869+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371733, + "value":"No", + "question_id":12915, + "created_at":"2017-11-28T13:09:31.230+01:00", + "updated_at":"2017-11-28T13:09:31.230+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":372108, + "value":"Yes", + "question_id":12915, + "created_at":"2017-11-28T17:39:33.958+01:00", + "updated_at":"2017-11-28T17:39:33.958+01:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372272, + "value":"Yes", + "question_id":12915, + "created_at":"2017-11-29T12:19:33.935+01:00", + "updated_at":"2017-11-29T12:19:33.935+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372602, + "value":"No", + "question_id":12915, + "created_at":"2017-11-29T21:38:02.111+01:00", + "updated_at":"2017-11-29T21:38:02.111+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":372885, + "value":"Yes", + "question_id":12915, + "created_at":"2017-11-30T14:20:56.969+01:00", + "updated_at":"2017-11-30T14:20:56.969+01:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373304, + "value":"No", + "question_id":12915, + "created_at":"2017-12-04T11:22:52.789+01:00", + "updated_at":"2017-12-04T11:22:52.789+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373675, + "value":"Yes", + "question_id":12915, + "created_at":"2017-12-04T17:54:45.423+01:00", + "updated_at":"2017-12-04T17:54:45.423+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374272, + "value":"No", + "question_id":12915, + "created_at":"2017-12-06T11:15:13.728+01:00", + "updated_at":"2017-12-06T11:15:13.728+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374670, + "value":"Yes", + "question_id":12915, + "created_at":"2017-12-13T09:39:59.473+01:00", + "updated_at":"2017-12-13T09:39:59.473+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375425, + "value":"Yes", + "question_id":12915, + "created_at":"2017-12-28T10:07:27.586+01:00", + "updated_at":"2017-12-28T10:07:27.586+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":376045, + "value":"No", + "question_id":12915, + "created_at":"2018-02-16T11:25:33.045+01:00", + "updated_at":"2018-02-16T11:25:33.045+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377540, + "value":"", + "question_id":12915, + "created_at":"2018-04-26T10:04:36.671+02:00", + "updated_at":"2018-04-26T10:04:36.671+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377542, + "value":"", + "question_id":12915, + "created_at":"2018-04-26T10:04:36.685+02:00", + "updated_at":"2018-04-26T10:04:36.685+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":377546, + "value":"", + "question_id":12915, + "created_at":"2018-04-26T10:04:36.715+02:00", + "updated_at":"2018-04-26T10:04:36.715+02:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377547, + "value":"", + "question_id":12915, + "created_at":"2018-04-26T10:04:36.723+02:00", + "updated_at":"2018-04-26T10:04:36.723+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":377548, + "value":"", + "question_id":12915, + "created_at":"2018-04-26T10:04:36.729+02:00", + "updated_at":"2018-04-26T10:04:36.729+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377549, + "value":"", + "question_id":12915, + "created_at":"2018-04-26T10:04:36.744+02:00", + "updated_at":"2018-04-26T10:04:36.744+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":384017, + "value":"Yes", + "question_id":12915, + "created_at":"2017-12-05T15:47:58.478+01:00", + "updated_at":"2017-12-05T15:47:58.478+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618222, + "value":"Yes", + "question_id":12915, + "created_at":"2018-10-28T18:34:03.290+01:00", + "updated_at":"2018-10-28T18:34:03.290+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756385, + "value":"Yes", + "question_id":12915, + "created_at":"2018-11-05T14:24:46.450+01:00", + "updated_at":"2018-11-05T14:24:46.450+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":774394, + "value":"Yes", + "question_id":12915, + "created_at":"2018-11-15T12:46:55.456+01:00", + "updated_at":"2018-11-15T12:46:55.456+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377550, + "value":"", + "question_id":12915, + "created_at":"2018-04-26T10:04:36.751+02:00", + "updated_at":"2018-04-26T10:04:36.751+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":1503270, + "value":"Planned", + "question_id":12915, + "created_at":"2021-11-17T08:14:14.955+01:00", + "updated_at":"2021-11-17T08:14:14.955+01:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1508458, + "value":"No", + "question_id":12915, + "created_at":"2021-11-25T10:26:40.584+01:00", + "updated_at":"2021-11-25T10:26:40.584+01:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"domain-registration", + "title":"Do you offer Domain name registration?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Domain name registration", + "title_detailed":"Administration/registration of top and second level domain names.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365595, + "value":"Yes", + "question_id":12917, + "created_at":"2017-09-06T12:14:52.507+02:00", + "updated_at":"2017-09-06T12:14:52.507+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365775, + "value":"Yes", + "question_id":12917, + "created_at":"2017-09-07T15:49:09.579+02:00", + "updated_at":"2017-09-07T15:49:09.579+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365901, + "value":"Yes", + "question_id":12917, + "created_at":"2017-09-13T13:43:11.051+02:00", + "updated_at":"2017-09-13T13:43:11.051+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":366155, + "value":"Yes", + "question_id":12917, + "created_at":"2017-09-19T14:58:21.181+02:00", + "updated_at":"2017-09-19T14:58:21.181+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366340, + "value":"Yes", + "question_id":12917, + "created_at":"2017-09-29T13:48:06.238+02:00", + "updated_at":"2017-09-29T13:48:06.238+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366704, + "value":"Yes", + "question_id":12917, + "created_at":"2017-10-10T09:39:18.704+02:00", + "updated_at":"2017-10-10T09:39:18.704+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366759, + "value":"Yes", + "question_id":12917, + "created_at":"2017-10-10T12:57:33.980+02:00", + "updated_at":"2017-10-10T12:57:33.980+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":366815, + "value":"Yes", + "question_id":12917, + "created_at":"2017-10-10T16:17:43.865+02:00", + "updated_at":"2017-10-10T16:17:43.865+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366938, + "value":"Yes", + "question_id":12917, + "created_at":"2017-10-11T10:46:58.767+02:00", + "updated_at":"2017-10-11T10:46:58.767+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367306, + "value":"Yes", + "question_id":12917, + "created_at":"2017-10-11T20:50:26.976+02:00", + "updated_at":"2017-10-11T20:50:26.976+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367926, + "value":"Yes", + "question_id":12917, + "created_at":"2017-10-24T13:18:48.278+02:00", + "updated_at":"2017-10-24T13:18:48.278+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":368172, + "value":"Yes", + "question_id":12917, + "created_at":"2017-10-30T09:21:14.328+01:00", + "updated_at":"2017-10-30T09:21:14.328+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":369528, + "value":"Yes", + "question_id":12917, + "created_at":"2017-11-13T20:33:37.574+01:00", + "updated_at":"2017-11-13T20:33:37.574+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369839, + "value":"Yes", + "question_id":12917, + "created_at":"2017-11-21T14:55:00.727+01:00", + "updated_at":"2017-11-21T14:55:00.727+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370195, + "value":"Yes", + "question_id":12917, + "created_at":"2017-11-23T14:05:42.382+01:00", + "updated_at":"2017-11-23T14:05:42.382+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370751, + "value":"Yes", + "question_id":12917, + "created_at":"2017-11-27T09:33:50.288+01:00", + "updated_at":"2017-11-27T09:33:50.288+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371114, + "value":"Yes", + "question_id":12917, + "created_at":"2017-11-27T13:46:44.032+01:00", + "updated_at":"2017-11-27T13:46:44.032+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371573, + "value":"Yes", + "question_id":12917, + "created_at":"2017-11-27T16:39:41.980+01:00", + "updated_at":"2017-11-27T16:39:41.980+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371746, + "value":"Yes", + "question_id":12917, + "created_at":"2017-11-28T13:10:39.423+01:00", + "updated_at":"2017-11-28T13:10:39.423+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372285, + "value":"Yes", + "question_id":12917, + "created_at":"2017-11-29T12:21:41.986+01:00", + "updated_at":"2017-11-29T12:21:41.986+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":372889, + "value":"Yes", + "question_id":12917, + "created_at":"2017-11-30T14:22:49.719+01:00", + "updated_at":"2017-11-30T14:22:49.719+01:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373239, + "value":"Yes", + "question_id":12917, + "created_at":"2017-12-04T11:10:23.109+01:00", + "updated_at":"2017-12-04T11:10:23.109+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373686, + "value":"Yes", + "question_id":12917, + "created_at":"2017-12-04T17:56:18.706+01:00", + "updated_at":"2017-12-04T17:56:18.706+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":373830, + "value":"Yes", + "question_id":12917, + "created_at":"2017-12-05T09:50:14.098+01:00", + "updated_at":"2017-12-05T09:50:14.098+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374281, + "value":"Yes", + "question_id":12917, + "created_at":"2017-12-06T11:18:33.310+01:00", + "updated_at":"2017-12-06T11:18:33.310+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374680, + "value":"Yes", + "question_id":12917, + "created_at":"2017-12-13T09:43:24.834+01:00", + "updated_at":"2017-12-13T09:43:24.834+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374922, + "value":"Yes", + "question_id":12917, + "created_at":"2017-12-14T12:47:28.968+01:00", + "updated_at":"2017-12-14T12:47:28.968+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375019, + "value":"Yes", + "question_id":12917, + "created_at":"2017-12-14T14:20:01.378+01:00", + "updated_at":"2017-12-14T14:20:01.378+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375431, + "value":"Yes", + "question_id":12917, + "created_at":"2017-12-28T10:07:53.908+01:00", + "updated_at":"2017-12-28T10:07:53.908+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377759, + "value":"", + "question_id":12917, + "created_at":"2018-04-26T10:04:38.348+02:00", + "updated_at":"2018-04-26T10:04:38.348+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377761, + "value":"", + "question_id":12917, + "created_at":"2018-04-26T10:04:38.362+02:00", + "updated_at":"2018-04-26T10:04:38.362+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377765, + "value":"", + "question_id":12917, + "created_at":"2018-04-26T10:04:38.397+02:00", + "updated_at":"2018-04-26T10:04:38.397+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377766, + "value":"", + "question_id":12917, + "created_at":"2018-04-26T10:04:38.413+02:00", + "updated_at":"2018-04-26T10:04:38.413+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":384019, + "value":"No", + "question_id":12917, + "created_at":"2017-12-05T15:54:31.219+01:00", + "updated_at":"2017-12-05T15:54:31.219+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":441042, + "value":"Yes", + "question_id":12917, + "created_at":"2018-10-04T17:20:50.166+02:00", + "updated_at":"2018-10-04T17:20:50.166+02:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":441600, + "value":"Yes", + "question_id":12917, + "created_at":"2018-10-11T13:39:21.005+02:00", + "updated_at":"2018-10-11T13:39:21.005+02:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618206, + "value":"Yes", + "question_id":12917, + "created_at":"2018-10-28T18:27:45.423+01:00", + "updated_at":"2018-10-28T18:27:45.423+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756365, + "value":"Yes", + "question_id":12917, + "created_at":"2018-11-05T14:01:54.569+01:00", + "updated_at":"2018-11-05T14:01:54.569+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":774382, + "value":"Yes", + "question_id":12917, + "created_at":"2018-11-15T12:42:24.714+01:00", + "updated_at":"2018-11-15T12:42:24.714+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377767, + "value":"", + "question_id":12917, + "created_at":"2018-04-26T10:04:38.420+02:00", + "updated_at":"2018-04-26T10:04:38.420+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":1482908, + "value":"Yes", + "question_id":12917, + "created_at":"2020-11-14T15:57:46.453+01:00", + "updated_at":"2020-11-14T15:57:46.453+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":1496801, + "value":"Yes", + "question_id":12917, + "created_at":"2021-08-30T10:29:35.634+02:00", + "updated_at":"2021-08-30T10:29:35.634+02:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":1496990, + "value":"Yes", + "question_id":12917, + "created_at":"2021-08-31T08:40:08.930+02:00", + "updated_at":"2021-08-31T08:40:08.930+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"eduroam-wifi", + "title":"Do you offer eduroam?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Eduroam", + "title_detailed":"Inter-WLAN service to facilitate easy and secure Internet access for roaming educational users.", + "tags":[ + "identity", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365635, + "value":"No", + "question_id":12921, + "created_at":"2017-09-06T12:18:53.252+02:00", + "updated_at":"2017-09-06T12:18:53.252+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365700, + "value":"No", + "question_id":12921, + "created_at":"2017-09-07T15:33:50.522+02:00", + "updated_at":"2017-09-07T15:33:50.522+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365922, + "value":"No", + "question_id":12921, + "created_at":"2017-09-13T13:45:51.951+02:00", + "updated_at":"2017-09-13T13:45:51.951+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366366, + "value":"No", + "question_id":12921, + "created_at":"2017-09-29T13:52:32.149+02:00", + "updated_at":"2017-09-29T13:52:32.149+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366589, + "value":"Yes", + "question_id":12921, + "created_at":"2017-10-08T09:18:51.818+02:00", + "updated_at":"2017-10-08T09:18:51.818+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366881, + "value":"No", + "question_id":12921, + "created_at":"2017-10-11T09:35:53.168+02:00", + "updated_at":"2017-10-11T09:35:53.168+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367155, + "value":"Yes", + "question_id":12921, + "created_at":"2017-10-11T13:42:38.244+02:00", + "updated_at":"2017-10-11T13:42:38.244+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367545, + "value":"No", + "question_id":12921, + "created_at":"2017-10-17T14:42:11.589+02:00", + "updated_at":"2017-10-17T14:42:11.589+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":367660, + "value":"No", + "question_id":12921, + "created_at":"2017-10-23T12:25:33.798+02:00", + "updated_at":"2017-10-23T12:25:33.798+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367756, + "value":"No", + "question_id":12921, + "created_at":"2017-10-23T19:34:00.499+02:00", + "updated_at":"2017-10-23T19:34:00.499+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367959, + "value":"Yes", + "question_id":12921, + "created_at":"2017-10-24T13:28:15.480+02:00", + "updated_at":"2017-10-24T13:28:15.480+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368939, + "value":"No", + "question_id":12921, + "created_at":"2017-11-08T15:49:53.870+01:00", + "updated_at":"2017-11-08T15:49:53.870+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369083, + "value":"No", + "question_id":12921, + "created_at":"2017-11-10T11:15:31.596+01:00", + "updated_at":"2017-11-10T11:15:31.596+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369244, + "value":"Yes", + "question_id":12921, + "created_at":"2017-11-10T15:39:36.310+01:00", + "updated_at":"2017-11-10T15:39:36.310+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369825, + "value":"No", + "question_id":12921, + "created_at":"2017-11-21T13:47:44.594+01:00", + "updated_at":"2017-11-21T13:47:44.594+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370234, + "value":"No", + "question_id":12921, + "created_at":"2017-11-23T14:12:45.828+01:00", + "updated_at":"2017-11-23T14:12:45.828+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370779, + "value":"No", + "question_id":12921, + "created_at":"2017-11-27T09:36:42.823+01:00", + "updated_at":"2017-11-27T09:36:42.823+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371158, + "value":"No", + "question_id":12921, + "created_at":"2017-11-27T14:11:14.887+01:00", + "updated_at":"2017-11-27T14:11:14.887+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371277, + "value":"Yes", + "question_id":12921, + "created_at":"2017-11-27T14:23:08.362+01:00", + "updated_at":"2017-11-27T14:23:08.362+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371586, + "value":"No", + "question_id":12921, + "created_at":"2017-11-27T16:44:30.471+01:00", + "updated_at":"2017-11-27T16:44:30.471+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371782, + "value":"No", + "question_id":12921, + "created_at":"2017-11-28T13:18:50.246+01:00", + "updated_at":"2017-11-28T13:18:50.246+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372329, + "value":"No", + "question_id":12921, + "created_at":"2017-11-29T12:34:19.772+01:00", + "updated_at":"2017-11-29T12:34:19.772+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372652, + "value":"Yes", + "question_id":12921, + "created_at":"2017-11-29T21:47:17.948+01:00", + "updated_at":"2017-11-29T21:47:17.948+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":373196, + "value":"No", + "question_id":12921, + "created_at":"2017-12-03T13:50:15.503+01:00", + "updated_at":"2017-12-03T13:50:15.503+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373262, + "value":"Yes", + "question_id":12921, + "created_at":"2017-12-04T11:15:10.088+01:00", + "updated_at":"2017-12-04T11:15:10.088+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373715, + "value":"Yes", + "question_id":12921, + "created_at":"2017-12-04T18:00:36.005+01:00", + "updated_at":"2017-12-04T18:00:36.005+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374360, + "value":"Yes", + "question_id":12921, + "created_at":"2017-12-06T13:16:16.160+01:00", + "updated_at":"2017-12-06T13:16:16.160+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374692, + "value":"Yes", + "question_id":12921, + "created_at":"2017-12-13T10:13:44.925+01:00", + "updated_at":"2017-12-13T10:13:44.925+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375043, + "value":"Yes", + "question_id":12921, + "created_at":"2017-12-14T14:22:02.459+01:00", + "updated_at":"2017-12-14T14:22:02.459+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375471, + "value":"Yes", + "question_id":12921, + "created_at":"2017-12-28T10:20:09.930+01:00", + "updated_at":"2017-12-28T10:20:09.930+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375733, + "value":"Yes", + "question_id":12921, + "created_at":"2018-01-18T13:28:14.842+01:00", + "updated_at":"2018-01-18T13:28:14.842+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":378713, + "value":"", + "question_id":12921, + "created_at":"2018-04-26T10:04:47.101+02:00", + "updated_at":"2018-04-26T10:04:47.101+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":378714, + "value":"", + "question_id":12921, + "created_at":"2018-04-26T10:04:47.111+02:00", + "updated_at":"2018-04-26T10:04:47.111+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":378715, + "value":"", + "question_id":12921, + "created_at":"2018-04-26T10:04:47.117+02:00", + "updated_at":"2018-04-26T10:04:47.117+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":378719, + "value":"", + "question_id":12921, + "created_at":"2018-04-26T10:04:47.150+02:00", + "updated_at":"2018-04-26T10:04:47.150+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":378721, + "value":"", + "question_id":12921, + "created_at":"2018-04-26T10:04:47.166+02:00", + "updated_at":"2018-04-26T10:04:47.166+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":378722, + "value":"", + "question_id":12921, + "created_at":"2018-04-26T10:04:47.173+02:00", + "updated_at":"2018-04-26T10:04:47.173+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":378723, + "value":"", + "question_id":12921, + "created_at":"2018-04-26T10:04:47.192+02:00", + "updated_at":"2018-04-26T10:04:47.192+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":384010, + "value":"Yes", + "question_id":12921, + "created_at":"2017-12-05T15:59:25.505+01:00", + "updated_at":"2017-12-05T15:59:25.505+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618235, + "value":"Yes", + "question_id":12921, + "created_at":"2018-10-28T18:39:29.994+01:00", + "updated_at":"2018-10-28T18:39:29.994+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641563, + "value":"Yes", + "question_id":12921, + "created_at":"2018-10-30T13:57:29.674+01:00", + "updated_at":"2018-10-30T13:57:29.674+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":999965, + "value":"Yes", + "question_id":12921, + "created_at":"2019-11-03T22:52:14.409+01:00", + "updated_at":"2019-11-03T22:52:14.409+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":378724, + "value":"", + "question_id":12921, + "created_at":"2018-04-26T10:04:47.200+02:00", + "updated_at":"2018-04-26T10:04:47.200+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"email-services", + "title":"Do you offer Email server hosting?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Email server hosting", + "title_detailed":"NREN hosted email servers.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365651, + "value":"Yes", + "question_id":12929, + "created_at":"2017-09-06T12:19:54.733+02:00", + "updated_at":"2017-09-06T12:19:54.733+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365723, + "value":"Yes", + "question_id":12929, + "created_at":"2017-09-07T15:35:33.418+02:00", + "updated_at":"2017-09-07T15:35:33.418+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":366195, + "value":"Planned", + "question_id":12929, + "created_at":"2017-09-26T09:19:46.944+02:00", + "updated_at":"2017-09-26T09:19:46.944+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366863, + "value":"Yes", + "question_id":12929, + "created_at":"2017-10-11T09:34:30.230+02:00", + "updated_at":"2017-10-11T09:34:30.230+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366958, + "value":"Yes", + "question_id":12929, + "created_at":"2017-10-11T10:52:31.524+02:00", + "updated_at":"2017-10-11T10:52:31.524+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367376, + "value":"Yes", + "question_id":12929, + "created_at":"2017-10-11T21:21:50.039+02:00", + "updated_at":"2017-10-11T21:21:50.039+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367519, + "value":"No", + "question_id":12929, + "created_at":"2017-10-17T12:10:09.884+02:00", + "updated_at":"2017-10-17T12:10:09.884+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367771, + "value":"Yes", + "question_id":12929, + "created_at":"2017-10-23T19:40:47.398+02:00", + "updated_at":"2017-10-23T19:40:47.398+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367975, + "value":"No", + "question_id":12929, + "created_at":"2017-10-24T13:32:32.024+02:00", + "updated_at":"2017-10-24T13:32:32.024+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368376, + "value":"Yes", + "question_id":12929, + "created_at":"2017-10-31T08:59:14.211+01:00", + "updated_at":"2017-10-31T08:59:14.211+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368948, + "value":"Yes", + "question_id":12929, + "created_at":"2017-11-08T15:52:54.465+01:00", + "updated_at":"2017-11-08T15:52:54.465+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369260, + "value":"Yes", + "question_id":12929, + "created_at":"2017-11-10T15:40:55.091+01:00", + "updated_at":"2017-11-10T15:40:55.091+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":369537, + "value":"Yes", + "question_id":12929, + "created_at":"2017-11-13T20:37:46.066+01:00", + "updated_at":"2017-11-13T20:37:46.066+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369817, + "value":"Yes", + "question_id":12929, + "created_at":"2017-11-21T13:45:47.457+01:00", + "updated_at":"2017-11-21T13:45:47.457+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370250, + "value":"Yes", + "question_id":12929, + "created_at":"2017-11-23T14:13:40.926+01:00", + "updated_at":"2017-11-23T14:13:40.926+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370800, + "value":"Yes", + "question_id":12929, + "created_at":"2017-11-27T09:38:15.360+01:00", + "updated_at":"2017-11-27T09:38:15.360+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371801, + "value":"No", + "question_id":12929, + "created_at":"2017-11-28T13:19:55.366+01:00", + "updated_at":"2017-11-28T13:19:55.366+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372347, + "value":"Yes", + "question_id":12929, + "created_at":"2017-11-29T12:36:26.523+01:00", + "updated_at":"2017-11-29T12:36:26.523+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372669, + "value":"Yes", + "question_id":12929, + "created_at":"2017-11-29T21:49:32.329+01:00", + "updated_at":"2017-11-29T21:49:32.329+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373271, + "value":"Yes", + "question_id":12929, + "created_at":"2017-12-04T11:16:39.824+01:00", + "updated_at":"2017-12-04T11:16:39.824+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373732, + "value":"Planned", + "question_id":12929, + "created_at":"2017-12-04T18:02:27.528+01:00", + "updated_at":"2017-12-04T18:02:27.528+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374710, + "value":"Yes", + "question_id":12929, + "created_at":"2017-12-13T10:21:46.682+01:00", + "updated_at":"2017-12-13T10:21:46.682+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375060, + "value":"Planned", + "question_id":12929, + "created_at":"2017-12-14T14:23:18.862+01:00", + "updated_at":"2017-12-14T14:23:18.862+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375487, + "value":"Yes", + "question_id":12929, + "created_at":"2017-12-28T10:23:55.976+01:00", + "updated_at":"2017-12-28T10:23:55.976+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375738, + "value":"Yes", + "question_id":12929, + "created_at":"2018-01-18T15:40:28.713+01:00", + "updated_at":"2018-01-18T15:40:28.713+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":379502, + "value":"", + "question_id":12929, + "created_at":"2018-04-26T10:04:54.400+02:00", + "updated_at":"2018-04-26T10:04:54.400+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":379504, + "value":"", + "question_id":12929, + "created_at":"2018-04-26T10:04:54.419+02:00", + "updated_at":"2018-04-26T10:04:54.419+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":379508, + "value":"", + "question_id":12929, + "created_at":"2018-04-26T10:04:54.459+02:00", + "updated_at":"2018-04-26T10:04:54.459+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":379510, + "value":"", + "question_id":12929, + "created_at":"2018-04-26T10:04:54.477+02:00", + "updated_at":"2018-04-26T10:04:54.477+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":379511, + "value":"", + "question_id":12929, + "created_at":"2018-04-26T10:04:54.485+02:00", + "updated_at":"2018-04-26T10:04:54.485+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":379512, + "value":"", + "question_id":12929, + "created_at":"2018-04-26T10:04:54.499+02:00", + "updated_at":"2018-04-26T10:04:54.499+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":379513, + "value":"", + "question_id":12929, + "created_at":"2018-04-26T10:04:54.510+02:00", + "updated_at":"2018-04-26T10:04:54.510+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383912, + "value":"No", + "question_id":12929, + "created_at":"2017-12-05T16:01:25.887+01:00", + "updated_at":"2017-12-05T16:01:25.887+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618226, + "value":"Yes", + "question_id":12929, + "created_at":"2018-10-28T18:35:08.547+01:00", + "updated_at":"2018-10-28T18:35:08.547+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641555, + "value":"Yes", + "question_id":12929, + "created_at":"2018-10-30T13:54:02.324+01:00", + "updated_at":"2018-10-30T13:54:02.324+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756377, + "value":"Yes", + "question_id":12929, + "created_at":"2018-11-05T14:04:46.574+01:00", + "updated_at":"2018-11-05T14:04:46.574+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":774393, + "value":"Yes", + "question_id":12929, + "created_at":"2018-11-15T12:46:34.263+01:00", + "updated_at":"2018-11-15T12:46:34.263+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":1165431, + "value":"Yes", + "question_id":12929, + "created_at":"2019-11-12T20:15:02.904+01:00", + "updated_at":"2019-11-12T20:15:02.904+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":379514, + "value":"", + "question_id":12929, + "created_at":"2018-04-26T10:04:54.519+02:00", + "updated_at":"2018-04-26T10:04:54.519+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":1488893, + "value":"Yes", + "question_id":12929, + "created_at":"2020-11-27T11:55:26.008+01:00", + "updated_at":"2020-11-27T11:55:26.008+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":1493630, + "value":"Planned", + "question_id":12929, + "created_at":"2020-12-18T14:48:20.336+01:00", + "updated_at":"2020-12-18T14:48:20.336+01:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":1494278, + "value":"No", + "question_id":12929, + "created_at":"2021-01-15T10:34:37.272+01:00", + "updated_at":"2021-01-15T10:34:37.272+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":1500367, + "value":"Yes", + "question_id":12929, + "created_at":"2021-11-08T12:29:51.081+01:00", + "updated_at":"2021-11-08T12:29:51.081+01:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"filesender", + "title":"Do you offer Filesender?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Filesender", + "title_detailed":"Web based application that allows authenticated users to securely and easily send arbitrarily large files.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "42":{ + "id":365804, + "value":"No", + "question_id":12933, + "created_at":"2017-09-07T15:51:35.271+02:00", + "updated_at":"2017-09-07T15:51:35.271+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365891, + "value":"No", + "question_id":12933, + "created_at":"2017-09-13T13:41:50.992+02:00", + "updated_at":"2017-09-13T13:41:50.992+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366318, + "value":"Yes", + "question_id":12933, + "created_at":"2017-09-29T13:43:32.981+02:00", + "updated_at":"2017-09-29T13:43:32.981+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366916, + "value":"Planned", + "question_id":12933, + "created_at":"2017-10-11T10:42:28.837+02:00", + "updated_at":"2017-10-11T10:42:28.837+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367137, + "value":"Yes", + "question_id":12933, + "created_at":"2017-10-11T13:30:16.807+02:00", + "updated_at":"2017-10-11T13:30:16.807+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367531, + "value":"No", + "question_id":12933, + "created_at":"2017-10-17T14:29:23.139+02:00", + "updated_at":"2017-10-17T14:29:23.139+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367707, + "value":"Yes", + "question_id":12933, + "created_at":"2017-10-23T19:26:14.265+02:00", + "updated_at":"2017-10-23T19:26:14.265+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367902, + "value":"No", + "question_id":12933, + "created_at":"2017-10-24T13:09:45.537+02:00", + "updated_at":"2017-10-24T13:09:45.537+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":368155, + "value":"Yes", + "question_id":12933, + "created_at":"2017-10-30T09:19:08.064+01:00", + "updated_at":"2017-10-30T09:19:08.064+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368387, + "value":"No", + "question_id":12933, + "created_at":"2017-10-31T13:03:11.993+01:00", + "updated_at":"2017-10-31T13:03:11.993+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368717, + "value":"Planned", + "question_id":12933, + "created_at":"2017-11-02T13:22:59.340+01:00", + "updated_at":"2017-11-02T13:22:59.340+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":369108, + "value":"No", + "question_id":12933, + "created_at":"2017-11-10T14:31:02.027+01:00", + "updated_at":"2017-11-10T14:31:02.027+01:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369191, + "value":"Yes", + "question_id":12933, + "created_at":"2017-11-10T15:32:57.630+01:00", + "updated_at":"2017-11-10T15:32:57.630+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369356, + "value":"Planned", + "question_id":12933, + "created_at":"2017-11-11T20:35:34.391+01:00", + "updated_at":"2017-11-11T20:35:34.391+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370159, + "value":"No", + "question_id":12933, + "created_at":"2017-11-23T13:53:05.070+01:00", + "updated_at":"2017-11-23T13:53:05.070+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":370357, + "value":"Yes", + "question_id":12933, + "created_at":"2017-11-24T16:12:18.945+01:00", + "updated_at":"2017-11-24T16:12:18.945+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370727, + "value":"No", + "question_id":12933, + "created_at":"2017-11-27T09:32:05.016+01:00", + "updated_at":"2017-11-27T09:32:05.016+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370931, + "value":"Planned", + "question_id":12933, + "created_at":"2017-11-27T10:36:45.171+01:00", + "updated_at":"2017-11-27T10:36:45.171+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371107, + "value":"No", + "question_id":12933, + "created_at":"2017-11-27T13:45:48.333+01:00", + "updated_at":"2017-11-27T13:45:48.333+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371558, + "value":"Planned", + "question_id":12933, + "created_at":"2017-11-27T16:36:58.304+01:00", + "updated_at":"2017-11-27T16:36:58.304+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371724, + "value":"Yes", + "question_id":12933, + "created_at":"2017-11-28T13:08:42.275+01:00", + "updated_at":"2017-11-28T13:08:42.275+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":372029, + "value":"Yes", + "question_id":12933, + "created_at":"2017-11-28T16:42:00.376+01:00", + "updated_at":"2017-11-28T16:42:00.376+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372437, + "value":"No", + "question_id":12933, + "created_at":"2017-11-29T12:59:30.577+01:00", + "updated_at":"2017-11-29T12:59:30.577+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372590, + "value":"No", + "question_id":12933, + "created_at":"2017-11-29T21:36:14.953+01:00", + "updated_at":"2017-11-29T21:36:14.953+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372969, + "value":"No", + "question_id":12933, + "created_at":"2017-11-30T16:44:05.211+01:00", + "updated_at":"2017-11-30T16:44:05.211+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373665, + "value":"Planned", + "question_id":12933, + "created_at":"2017-12-04T17:53:25.459+01:00", + "updated_at":"2017-12-04T17:53:25.459+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374037, + "value":"Planned", + "question_id":12933, + "created_at":"2017-12-06T06:57:28.297+01:00", + "updated_at":"2017-12-06T06:57:28.297+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374260, + "value":"Planned", + "question_id":12933, + "created_at":"2017-12-06T11:12:00.552+01:00", + "updated_at":"2017-12-06T11:12:00.552+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375338, + "value":"Yes", + "question_id":12933, + "created_at":"2017-12-27T14:46:14.266+01:00", + "updated_at":"2017-12-27T14:46:14.266+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375422, + "value":"Yes", + "question_id":12933, + "created_at":"2017-12-28T10:06:07.442+01:00", + "updated_at":"2017-12-28T10:06:07.442+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375713, + "value":"Planned", + "question_id":12933, + "created_at":"2018-01-18T13:22:12.035+01:00", + "updated_at":"2018-01-18T13:22:12.035+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":376040, + "value":"Yes", + "question_id":12933, + "created_at":"2018-02-16T11:17:49.577+01:00", + "updated_at":"2018-02-16T11:17:49.577+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377075, + "value":"", + "question_id":12933, + "created_at":"2018-04-26T10:04:31.926+02:00", + "updated_at":"2018-04-26T10:04:31.926+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":377076, + "value":"", + "question_id":12933, + "created_at":"2018-04-26T10:04:31.941+02:00", + "updated_at":"2018-04-26T10:04:31.941+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377077, + "value":"", + "question_id":12933, + "created_at":"2018-04-26T10:04:31.949+02:00", + "updated_at":"2018-04-26T10:04:31.949+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":377080, + "value":"", + "question_id":12933, + "created_at":"2018-04-26T10:04:31.983+02:00", + "updated_at":"2018-04-26T10:04:31.983+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377081, + "value":"", + "question_id":12933, + "created_at":"2018-04-26T10:04:31.997+02:00", + "updated_at":"2018-04-26T10:04:31.997+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":377082, + "value":"", + "question_id":12933, + "created_at":"2018-04-26T10:04:32.005+02:00", + "updated_at":"2018-04-26T10:04:32.005+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377083, + "value":"", + "question_id":12933, + "created_at":"2018-04-26T10:04:32.026+02:00", + "updated_at":"2018-04-26T10:04:32.026+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383891, + "value":"No", + "question_id":12933, + "created_at":"2017-12-05T15:47:01.735+01:00", + "updated_at":"2017-12-05T15:47:01.735+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "48":{ + "id":1131006, + "value":"Planned", + "question_id":12933, + "created_at":"2019-11-08T19:37:20.348+01:00", + "updated_at":"2019-11-08T19:37:20.348+01:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377084, + "value":"", + "question_id":12933, + "created_at":"2018-04-26T10:04:32.035+02:00", + "updated_at":"2018-04-26T10:04:32.035+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":1485839, + "value":"No", + "question_id":12933, + "created_at":"2020-11-17T15:20:43.709+01:00", + "updated_at":"2020-11-17T15:20:43.709+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"firewall-on-demand", + "title":"Do you offer Firewall on demand?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Firewall-on-demand", + "title_detailed":"Provision of a dynamic firewall services to mitigate against DDOS attacks. ", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365570, + "value":"Yes", + "question_id":13031, + "created_at":"2017-09-06T12:11:53.482+02:00", + "updated_at":"2017-09-06T12:11:53.482+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365881, + "value":"No", + "question_id":13031, + "created_at":"2017-09-13T13:40:34.625+02:00", + "updated_at":"2017-09-13T13:40:34.625+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367092, + "value":"No", + "question_id":13031, + "created_at":"2017-10-11T13:20:00.918+02:00", + "updated_at":"2017-10-11T13:20:00.918+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367695, + "value":"No", + "question_id":13031, + "created_at":"2017-10-23T19:25:02.743+02:00", + "updated_at":"2017-10-23T19:25:02.743+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367886, + "value":"Yes", + "question_id":13031, + "created_at":"2017-10-24T13:04:59.813+02:00", + "updated_at":"2017-10-24T13:04:59.813+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369338, + "value":"Yes", + "question_id":13031, + "created_at":"2017-11-11T20:30:42.885+01:00", + "updated_at":"2017-11-11T20:30:42.885+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370136, + "value":"No", + "question_id":13031, + "created_at":"2017-11-23T13:48:50.921+01:00", + "updated_at":"2017-11-23T13:48:50.921+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":370595, + "value":"Planned", + "question_id":13031, + "created_at":"2017-11-26T10:25:04.847+01:00", + "updated_at":"2017-11-26T10:25:04.847+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370713, + "value":"No", + "question_id":13031, + "created_at":"2017-11-27T09:30:50.545+01:00", + "updated_at":"2017-11-27T09:30:50.545+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370918, + "value":"Yes", + "question_id":13031, + "created_at":"2017-11-27T10:34:55.168+01:00", + "updated_at":"2017-11-27T10:34:55.168+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371124, + "value":"Yes", + "question_id":13031, + "created_at":"2017-11-27T13:50:29.592+01:00", + "updated_at":"2017-11-27T13:50:29.592+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371550, + "value":"Planned", + "question_id":13031, + "created_at":"2017-11-27T16:35:22.850+01:00", + "updated_at":"2017-11-27T16:35:22.850+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":371481, + "value":"Yes", + "question_id":13031, + "created_at":"2017-11-27T15:00:51.244+01:00", + "updated_at":"2017-11-27T15:00:51.244+01:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371707, + "value":"No", + "question_id":13031, + "created_at":"2017-11-28T13:06:43.683+01:00", + "updated_at":"2017-11-28T13:06:43.683+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372430, + "value":"No", + "question_id":13031, + "created_at":"2017-11-29T12:57:22.019+01:00", + "updated_at":"2017-11-29T12:57:22.019+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373285, + "value":"Yes", + "question_id":13031, + "created_at":"2017-12-04T11:18:58.644+01:00", + "updated_at":"2017-12-04T11:18:58.644+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373649, + "value":"Yes", + "question_id":13031, + "created_at":"2017-12-04T17:51:45.020+01:00", + "updated_at":"2017-12-04T17:51:45.020+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":373778, + "value":"No", + "question_id":13031, + "created_at":"2017-12-04T19:10:54.820+01:00", + "updated_at":"2017-12-04T19:10:54.820+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":374983, + "value":"Planned", + "question_id":13031, + "created_at":"2017-12-14T14:17:22.814+01:00", + "updated_at":"2017-12-14T14:17:22.814+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375363, + "value":"No", + "question_id":13031, + "created_at":"2017-12-27T14:51:30.199+01:00", + "updated_at":"2017-12-27T14:51:30.199+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375401, + "value":"Yes", + "question_id":13031, + "created_at":"2017-12-28T10:01:37.158+01:00", + "updated_at":"2017-12-28T10:01:37.158+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375811, + "value":"No", + "question_id":13031, + "created_at":"2018-01-22T00:47:46.144+01:00", + "updated_at":"2018-01-22T00:47:46.144+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":376858, + "value":"", + "question_id":13031, + "created_at":"2018-04-26T10:04:29.411+02:00", + "updated_at":"2018-04-26T10:04:29.411+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":376860, + "value":"", + "question_id":13031, + "created_at":"2018-04-26T10:04:29.432+02:00", + "updated_at":"2018-04-26T10:04:29.432+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":376862, + "value":"", + "question_id":13031, + "created_at":"2018-04-26T10:04:29.448+02:00", + "updated_at":"2018-04-26T10:04:29.448+02:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":376864, + "value":"", + "question_id":13031, + "created_at":"2018-04-26T10:04:29.465+02:00", + "updated_at":"2018-04-26T10:04:29.465+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":376865, + "value":"", + "question_id":13031, + "created_at":"2018-04-26T10:04:29.477+02:00", + "updated_at":"2018-04-26T10:04:29.477+02:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":376866, + "value":"", + "question_id":13031, + "created_at":"2018-04-26T10:04:29.488+02:00", + "updated_at":"2018-04-26T10:04:29.488+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":376867, + "value":"", + "question_id":13031, + "created_at":"2018-04-26T10:04:29.496+02:00", + "updated_at":"2018-04-26T10:04:29.496+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":376869, + "value":"", + "question_id":13031, + "created_at":"2018-04-26T10:04:29.516+02:00", + "updated_at":"2018-04-26T10:04:29.516+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":376870, + "value":"", + "question_id":13031, + "created_at":"2018-04-26T10:04:29.525+02:00", + "updated_at":"2018-04-26T10:04:29.525+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":376872, + "value":"", + "question_id":13031, + "created_at":"2018-04-26T10:04:29.553+02:00", + "updated_at":"2018-04-26T10:04:29.553+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383987, + "value":"No", + "question_id":13031, + "created_at":"2017-12-05T15:44:41.548+01:00", + "updated_at":"2017-12-05T15:44:41.548+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618237, + "value":"Yes", + "question_id":13031, + "created_at":"2018-10-28T18:40:29.721+01:00", + "updated_at":"2018-10-28T18:40:29.721+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":618358, + "value":"Planned", + "question_id":13031, + "created_at":"2018-10-29T11:49:09.799+01:00", + "updated_at":"2018-10-29T11:49:09.799+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":1165434, + "value":"Yes", + "question_id":13031, + "created_at":"2019-11-12T20:18:46.855+01:00", + "updated_at":"2019-11-12T20:18:46.855+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":1248628, + "value":"Planned", + "question_id":13031, + "created_at":"2019-12-02T17:31:48.574+01:00", + "updated_at":"2019-12-02T17:31:48.574+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":1470700, + "value":"Planned", + "question_id":13031, + "created_at":"2020-10-16T14:54:57.381+02:00", + "updated_at":"2020-10-16T14:54:57.381+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":1491221, + "value":"Yes", + "question_id":13031, + "created_at":"2020-12-02T20:18:15.920+01:00", + "updated_at":"2020-12-02T20:18:15.920+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":1493637, + "value":"Planned", + "question_id":13031, + "created_at":"2020-12-18T15:00:45.658+01:00", + "updated_at":"2020-12-18T15:00:45.658+01:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":1501062, + "value":"Planned", + "question_id":13031, + "created_at":"2021-11-09T16:22:44.367+01:00", + "updated_at":"2021-11-09T16:22:44.367+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":1512739, + "value":"Yes", + "question_id":13031, + "created_at":"2021-12-11T16:01:29.105+01:00", + "updated_at":"2021-12-11T16:01:29.105+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1517905, + "value":"Yes", + "question_id":13031, + "created_at":"2022-09-29T14:29:28.015+02:00", + "updated_at":"2022-09-29T14:29:28.015+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"home-vpn", + "title":"Do you offer VPN client access?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Remote access VPN service", + "title_detailed":"Remote access and site-to-site secure VPN.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "42":{ + "id":365803, + "value":"Yes", + "question_id":12939, + "created_at":"2017-09-07T15:51:30.777+02:00", + "updated_at":"2017-09-07T15:51:30.777+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":366150, + "value":"Yes", + "question_id":12939, + "created_at":"2017-09-19T14:56:19.103+02:00", + "updated_at":"2017-09-19T14:56:19.103+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366319, + "value":"No", + "question_id":12939, + "created_at":"2017-09-29T13:44:00.727+02:00", + "updated_at":"2017-09-29T13:44:00.727+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366920, + "value":"Yes", + "question_id":12939, + "created_at":"2017-10-11T10:42:51.880+02:00", + "updated_at":"2017-10-11T10:42:51.880+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367904, + "value":"No", + "question_id":12939, + "created_at":"2017-10-24T13:10:38.788+02:00", + "updated_at":"2017-10-24T13:10:38.788+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368719, + "value":"No", + "question_id":12939, + "created_at":"2017-11-02T13:23:18.051+01:00", + "updated_at":"2017-11-02T13:23:18.051+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368876, + "value":"Yes", + "question_id":12939, + "created_at":"2017-11-08T11:28:55.086+01:00", + "updated_at":"2017-11-08T11:28:55.086+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369192, + "value":"Yes", + "question_id":12939, + "created_at":"2017-11-10T15:33:04.616+01:00", + "updated_at":"2017-11-10T15:33:04.616+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370160, + "value":"No", + "question_id":12939, + "created_at":"2017-11-23T13:53:32.059+01:00", + "updated_at":"2017-11-23T13:53:32.059+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370728, + "value":"No", + "question_id":12939, + "created_at":"2017-11-27T09:32:08.417+01:00", + "updated_at":"2017-11-27T09:32:08.417+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371337, + "value":"No", + "question_id":12939, + "created_at":"2017-11-27T14:33:04.274+01:00", + "updated_at":"2017-11-27T14:33:04.274+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":372031, + "value":"No", + "question_id":12939, + "created_at":"2017-11-28T16:42:45.575+01:00", + "updated_at":"2017-11-28T16:42:45.575+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372257, + "value":"Yes", + "question_id":12939, + "created_at":"2017-11-29T12:16:44.757+01:00", + "updated_at":"2017-11-29T12:16:44.757+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372438, + "value":"No", + "question_id":12939, + "created_at":"2017-11-29T12:59:38.587+01:00", + "updated_at":"2017-11-29T12:59:38.587+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":372517, + "value":"No", + "question_id":12939, + "created_at":"2017-11-29T20:23:39.241+01:00", + "updated_at":"2017-11-29T20:23:39.241+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372591, + "value":"Yes", + "question_id":12939, + "created_at":"2017-11-29T21:36:29.335+01:00", + "updated_at":"2017-11-29T21:36:29.335+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":372882, + "value":"", + "question_id":12939, + "created_at":"2017-11-30T14:20:00.739+01:00", + "updated_at":"2017-11-30T14:20:00.739+01:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373297, + "value":"Yes", + "question_id":12939, + "created_at":"2017-12-04T11:22:08.391+01:00", + "updated_at":"2017-12-04T11:22:08.391+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373666, + "value":"Planned", + "question_id":12939, + "created_at":"2017-12-04T17:53:35.135+01:00", + "updated_at":"2017-12-04T17:53:35.135+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374261, + "value":"Planned", + "question_id":12939, + "created_at":"2017-12-06T11:12:49.869+01:00", + "updated_at":"2017-12-06T11:12:49.869+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374656, + "value":"Yes", + "question_id":12939, + "created_at":"2017-12-13T09:36:35.536+01:00", + "updated_at":"2017-12-13T09:36:35.536+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375001, + "value":"No", + "question_id":12939, + "created_at":"2017-12-14T14:18:49.355+01:00", + "updated_at":"2017-12-14T14:18:49.355+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375439, + "value":"No", + "question_id":12939, + "created_at":"2017-12-28T10:16:37.945+01:00", + "updated_at":"2017-12-28T10:16:37.945+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377119, + "value":"", + "question_id":12939, + "created_at":"2018-04-26T10:04:32.390+02:00", + "updated_at":"2018-04-26T10:04:32.390+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377122, + "value":"", + "question_id":12939, + "created_at":"2018-04-26T10:04:32.421+02:00", + "updated_at":"2018-04-26T10:04:32.421+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":377125, + "value":"", + "question_id":12939, + "created_at":"2018-04-26T10:04:32.450+02:00", + "updated_at":"2018-04-26T10:04:32.450+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":377126, + "value":"", + "question_id":12939, + "created_at":"2018-04-26T10:04:32.461+02:00", + "updated_at":"2018-04-26T10:04:32.461+02:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":377127, + "value":"", + "question_id":12939, + "created_at":"2018-04-26T10:04:32.476+02:00", + "updated_at":"2018-04-26T10:04:32.476+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":377128, + "value":"", + "question_id":12939, + "created_at":"2018-04-26T10:04:32.493+02:00", + "updated_at":"2018-04-26T10:04:32.493+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377129, + "value":"", + "question_id":12939, + "created_at":"2018-04-26T10:04:32.500+02:00", + "updated_at":"2018-04-26T10:04:32.500+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":377130, + "value":"", + "question_id":12939, + "created_at":"2018-04-26T10:04:32.511+02:00", + "updated_at":"2018-04-26T10:04:32.511+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":377131, + "value":"", + "question_id":12939, + "created_at":"2018-04-26T10:04:32.519+02:00", + "updated_at":"2018-04-26T10:04:32.519+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":377132, + "value":"", + "question_id":12939, + "created_at":"2018-04-26T10:04:32.534+02:00", + "updated_at":"2018-04-26T10:04:32.534+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":377134, + "value":"", + "question_id":12939, + "created_at":"2018-04-26T10:04:32.551+02:00", + "updated_at":"2018-04-26T10:04:32.551+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377135, + "value":"", + "question_id":12939, + "created_at":"2018-04-26T10:04:32.559+02:00", + "updated_at":"2018-04-26T10:04:32.559+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383899, + "value":"No", + "question_id":12939, + "created_at":"2017-12-05T15:47:08.712+01:00", + "updated_at":"2017-12-05T15:47:08.712+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756399, + "value":"Yes", + "question_id":12939, + "created_at":"2018-11-05T14:31:24.202+01:00", + "updated_at":"2018-11-05T14:31:24.202+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":797999, + "value":"Yes", + "question_id":12939, + "created_at":"2018-11-27T19:11:55.223+01:00", + "updated_at":"2018-11-27T19:11:55.223+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":963609, + "value":"Planned", + "question_id":12939, + "created_at":"2019-10-30T16:57:27.820+01:00", + "updated_at":"2019-10-30T16:57:27.820+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":1227748, + "value":"Yes", + "question_id":12939, + "created_at":"2019-11-21T09:49:05.888+01:00", + "updated_at":"2019-11-21T09:49:05.888+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377136, + "value":"", + "question_id":12939, + "created_at":"2018-04-26T10:04:32.568+02:00", + "updated_at":"2018-04-26T10:04:32.568+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":1501063, + "value":"Planned", + "question_id":12939, + "created_at":"2021-11-09T16:24:11.226+01:00", + "updated_at":"2021-11-09T16:24:11.226+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "48":{ + "id":1504164, + "value":"Planned", + "question_id":12939, + "created_at":"2021-11-17T17:01:49.205+01:00", + "updated_at":"2021-11-17T17:01:49.205+01:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identity-management", + "title":"Do you offer Hosted campus AAI?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Hosted campus AAI", + "title_detailed":"Hosting of an Identity Provider service on behalf of connected institutions to authenticate users.", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365638, + "value":"No", + "question_id":12945, + "created_at":"2017-09-06T12:19:02.290+02:00", + "updated_at":"2017-09-06T12:19:02.290+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366369, + "value":"No", + "question_id":12945, + "created_at":"2017-09-29T13:52:48.541+02:00", + "updated_at":"2017-09-29T13:52:48.541+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366593, + "value":"No", + "question_id":12945, + "created_at":"2017-10-08T09:19:06.684+02:00", + "updated_at":"2017-10-08T09:19:06.684+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367498, + "value":"No", + "question_id":12945, + "created_at":"2017-10-17T12:06:20.214+02:00", + "updated_at":"2017-10-17T12:06:20.214+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367759, + "value":"No", + "question_id":12945, + "created_at":"2017-10-23T19:34:14.646+02:00", + "updated_at":"2017-10-23T19:34:14.646+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367962, + "value":"No", + "question_id":12945, + "created_at":"2017-10-24T13:29:22.652+02:00", + "updated_at":"2017-10-24T13:29:22.652+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368943, + "value":"No", + "question_id":12945, + "created_at":"2017-11-08T15:50:43.227+01:00", + "updated_at":"2017-11-08T15:50:43.227+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369085, + "value":"No", + "question_id":12945, + "created_at":"2017-11-10T11:15:49.021+01:00", + "updated_at":"2017-11-10T11:15:49.021+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369247, + "value":"Planned", + "question_id":12945, + "created_at":"2017-11-10T15:39:54.710+01:00", + "updated_at":"2017-11-10T15:39:54.710+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369822, + "value":"No", + "question_id":12945, + "created_at":"2017-11-21T13:47:02.027+01:00", + "updated_at":"2017-11-21T13:47:02.027+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":369906, + "value":"No", + "question_id":12945, + "created_at":"2017-11-21T16:52:18.348+01:00", + "updated_at":"2017-11-21T16:52:18.348+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370237, + "value":"No", + "question_id":12945, + "created_at":"2017-11-23T14:12:54.113+01:00", + "updated_at":"2017-11-23T14:12:54.113+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370782, + "value":"Yes", + "question_id":12945, + "created_at":"2017-11-27T09:36:56.964+01:00", + "updated_at":"2017-11-27T09:36:56.964+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371167, + "value":"No", + "question_id":12945, + "created_at":"2017-11-27T14:13:25.896+01:00", + "updated_at":"2017-11-27T14:13:25.896+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371271, + "value":"No", + "question_id":12945, + "created_at":"2017-11-27T14:22:34.777+01:00", + "updated_at":"2017-11-27T14:22:34.777+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371786, + "value":"Yes", + "question_id":12945, + "created_at":"2017-11-28T13:19:07.056+01:00", + "updated_at":"2017-11-28T13:19:07.056+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372332, + "value":"No", + "question_id":12945, + "created_at":"2017-11-29T12:34:33.427+01:00", + "updated_at":"2017-11-29T12:34:33.427+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372655, + "value":"Yes", + "question_id":12945, + "created_at":"2017-11-29T21:48:01.498+01:00", + "updated_at":"2017-11-29T21:48:01.498+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":373197, + "value":"Planned", + "question_id":12945, + "created_at":"2017-12-03T13:50:31.024+01:00", + "updated_at":"2017-12-03T13:50:31.024+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373718, + "value":"No", + "question_id":12945, + "created_at":"2017-12-04T18:00:53.575+01:00", + "updated_at":"2017-12-04T18:00:53.575+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374069, + "value":"No", + "question_id":12945, + "created_at":"2017-12-06T07:27:10.490+01:00", + "updated_at":"2017-12-06T07:27:10.490+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374365, + "value":"No", + "question_id":12945, + "created_at":"2017-12-06T13:17:22.584+01:00", + "updated_at":"2017-12-06T13:17:22.584+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374696, + "value":"No", + "question_id":12945, + "created_at":"2017-12-13T10:16:55.497+01:00", + "updated_at":"2017-12-13T10:16:55.497+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375046, + "value":"No", + "question_id":12945, + "created_at":"2017-12-14T14:22:12.448+01:00", + "updated_at":"2017-12-14T14:22:12.448+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375473, + "value":"Yes", + "question_id":12945, + "created_at":"2017-12-28T10:20:16.384+01:00", + "updated_at":"2017-12-28T10:20:16.384+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375735, + "value":"No", + "question_id":12945, + "created_at":"2018-01-18T13:31:37.544+01:00", + "updated_at":"2018-01-18T13:31:37.544+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":378856, + "value":"", + "question_id":12945, + "created_at":"2018-04-26T10:04:48.224+02:00", + "updated_at":"2018-04-26T10:04:48.224+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":378857, + "value":"", + "question_id":12945, + "created_at":"2018-04-26T10:04:48.237+02:00", + "updated_at":"2018-04-26T10:04:48.237+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":378858, + "value":"", + "question_id":12945, + "created_at":"2018-04-26T10:04:48.243+02:00", + "updated_at":"2018-04-26T10:04:48.243+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":378860, + "value":"", + "question_id":12945, + "created_at":"2018-04-26T10:04:48.257+02:00", + "updated_at":"2018-04-26T10:04:48.257+02:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":378861, + "value":"", + "question_id":12945, + "created_at":"2018-04-26T10:04:48.267+02:00", + "updated_at":"2018-04-26T10:04:48.267+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":378862, + "value":"", + "question_id":12945, + "created_at":"2018-04-26T10:04:48.290+02:00", + "updated_at":"2018-04-26T10:04:48.290+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":378864, + "value":"", + "question_id":12945, + "created_at":"2018-04-26T10:04:48.312+02:00", + "updated_at":"2018-04-26T10:04:48.312+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":378865, + "value":"", + "question_id":12945, + "created_at":"2018-04-26T10:04:48.321+02:00", + "updated_at":"2018-04-26T10:04:48.321+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":378866, + "value":"", + "question_id":12945, + "created_at":"2018-04-26T10:04:48.329+02:00", + "updated_at":"2018-04-26T10:04:48.329+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":378867, + "value":"", + "question_id":12945, + "created_at":"2018-04-26T10:04:48.343+02:00", + "updated_at":"2018-04-26T10:04:48.343+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":378868, + "value":"", + "question_id":12945, + "created_at":"2018-04-26T10:04:48.354+02:00", + "updated_at":"2018-04-26T10:04:48.354+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383936, + "value":"No", + "question_id":12945, + "created_at":"2017-12-05T16:00:20.449+01:00", + "updated_at":"2017-12-05T16:00:20.449+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641572, + "value":"Yes", + "question_id":12945, + "created_at":"2018-10-30T14:03:05.755+01:00", + "updated_at":"2018-10-30T14:03:05.755+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":378869, + "value":"", + "question_id":12945, + "created_at":"2018-04-26T10:04:48.364+02:00", + "updated_at":"2018-04-26T10:04:48.364+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":1500369, + "value":"No", + "question_id":12945, + "created_at":"2021-11-08T12:31:07.018+01:00", + "updated_at":"2021-11-08T12:31:07.018+01:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":1501641, + "value":"Planned", + "question_id":12945, + "created_at":"2021-11-12T09:23:07.791+01:00", + "updated_at":"2021-11-12T09:23:07.791+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1517912, + "value":"Planned", + "question_id":12945, + "created_at":"2022-09-29T14:39:10.678+02:00", + "updated_at":"2022-09-29T14:39:10.678+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"instant-messaging", + "title":"Do you offer instant messaging?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Instant messaging", + "title_detailed":"Commercial or NREN own online chat service which offers real-time text transmission over the Internet.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365582, + "value":"Yes", + "question_id":12947, + "created_at":"2017-09-06T12:13:40.139+02:00", + "updated_at":"2017-09-06T12:13:40.139+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365800, + "value":"Yes", + "question_id":12947, + "created_at":"2017-09-07T15:51:22.995+02:00", + "updated_at":"2017-09-07T15:51:22.995+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365892, + "value":"Yes", + "question_id":12947, + "created_at":"2017-09-13T13:42:09.094+02:00", + "updated_at":"2017-09-13T13:42:09.094+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":366152, + "value":"Yes", + "question_id":12947, + "created_at":"2017-09-19T14:56:33.712+02:00", + "updated_at":"2017-09-19T14:56:33.712+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366924, + "value":"Yes", + "question_id":12947, + "created_at":"2017-10-11T10:43:40.715+02:00", + "updated_at":"2017-10-11T10:43:40.715+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367906, + "value":"No", + "question_id":12947, + "created_at":"2017-10-24T13:11:09.831+02:00", + "updated_at":"2017-10-24T13:11:09.831+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368722, + "value":"Yes", + "question_id":12947, + "created_at":"2017-11-02T13:23:27.247+01:00", + "updated_at":"2017-11-02T13:23:27.247+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368796, + "value":"Yes", + "question_id":12947, + "created_at":"2017-11-06T16:09:27.047+01:00", + "updated_at":"2017-11-06T16:09:27.047+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369193, + "value":"Yes", + "question_id":12947, + "created_at":"2017-11-10T15:33:14.555+01:00", + "updated_at":"2017-11-10T15:33:14.555+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369360, + "value":"Yes", + "question_id":12947, + "created_at":"2017-11-11T20:35:56.543+01:00", + "updated_at":"2017-11-11T20:35:56.543+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":369525, + "value":"Yes", + "question_id":12947, + "created_at":"2017-11-13T20:31:55.203+01:00", + "updated_at":"2017-11-13T20:31:55.203+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370162, + "value":"Yes", + "question_id":12947, + "created_at":"2017-11-23T13:53:49.516+01:00", + "updated_at":"2017-11-23T13:53:49.516+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371727, + "value":"", + "question_id":12947, + "created_at":"2017-11-28T13:09:06.797+01:00", + "updated_at":"2017-11-28T13:09:06.797+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":372032, + "value":"Yes", + "question_id":12947, + "created_at":"2017-11-28T16:46:16.061+01:00", + "updated_at":"2017-11-28T16:46:16.061+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372261, + "value":"Yes", + "question_id":12947, + "created_at":"2017-11-29T12:17:33.562+01:00", + "updated_at":"2017-11-29T12:17:33.562+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372593, + "value":"Yes", + "question_id":12947, + "created_at":"2017-11-29T21:36:50.324+01:00", + "updated_at":"2017-11-29T21:36:50.324+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372744, + "value":"Yes", + "question_id":12947, + "created_at":"2017-11-30T08:29:21.151+01:00", + "updated_at":"2017-11-30T08:29:21.151+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373299, + "value":"Yes", + "question_id":12947, + "created_at":"2017-12-04T11:22:21.466+01:00", + "updated_at":"2017-12-04T11:22:21.466+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373668, + "value":"Planned", + "question_id":12947, + "created_at":"2017-12-04T17:53:49.185+01:00", + "updated_at":"2017-12-04T17:53:49.185+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":373818, + "value":"Yes", + "question_id":12947, + "created_at":"2017-12-05T09:47:22.361+01:00", + "updated_at":"2017-12-05T09:47:22.361+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374263, + "value":"Yes", + "question_id":12947, + "created_at":"2017-12-06T11:13:23.669+01:00", + "updated_at":"2017-12-06T11:13:23.669+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374661, + "value":"Yes", + "question_id":12947, + "created_at":"2017-12-13T09:38:21.333+01:00", + "updated_at":"2017-12-13T09:38:21.333+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375003, + "value":"No", + "question_id":12947, + "created_at":"2017-12-14T14:18:53.165+01:00", + "updated_at":"2017-12-14T14:18:53.165+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375495, + "value":"Yes", + "question_id":12947, + "created_at":"2017-12-28T10:31:37.285+01:00", + "updated_at":"2017-12-28T10:31:37.285+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377217, + "value":"", + "question_id":12947, + "created_at":"2018-04-26T10:04:33.452+02:00", + "updated_at":"2018-04-26T10:04:33.452+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377219, + "value":"", + "question_id":12947, + "created_at":"2018-04-26T10:04:33.475+02:00", + "updated_at":"2018-04-26T10:04:33.475+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":377223, + "value":"", + "question_id":12947, + "created_at":"2018-04-26T10:04:33.511+02:00", + "updated_at":"2018-04-26T10:04:33.511+02:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":377224, + "value":"", + "question_id":12947, + "created_at":"2018-04-26T10:04:33.525+02:00", + "updated_at":"2018-04-26T10:04:33.525+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":377225, + "value":"", + "question_id":12947, + "created_at":"2018-04-26T10:04:33.536+02:00", + "updated_at":"2018-04-26T10:04:33.536+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377227, + "value":"", + "question_id":12947, + "created_at":"2018-04-26T10:04:33.559+02:00", + "updated_at":"2018-04-26T10:04:33.559+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":377228, + "value":"", + "question_id":12947, + "created_at":"2018-04-26T10:04:33.569+02:00", + "updated_at":"2018-04-26T10:04:33.569+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":377229, + "value":"", + "question_id":12947, + "created_at":"2018-04-26T10:04:33.586+02:00", + "updated_at":"2018-04-26T10:04:33.586+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377230, + "value":"", + "question_id":12947, + "created_at":"2018-04-26T10:04:33.598+02:00", + "updated_at":"2018-04-26T10:04:33.598+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383952, + "value":"Yes", + "question_id":12947, + "created_at":"2017-12-06T13:25:02.708+01:00", + "updated_at":"2017-12-06T13:25:02.708+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618216, + "value":"Yes", + "question_id":12947, + "created_at":"2018-10-28T18:32:27.880+01:00", + "updated_at":"2018-10-28T18:32:27.880+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641551, + "value":"Yes", + "question_id":12947, + "created_at":"2018-10-30T13:52:20.245+01:00", + "updated_at":"2018-10-30T13:52:20.245+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756384, + "value":"Yes", + "question_id":12947, + "created_at":"2018-11-05T14:24:34.499+01:00", + "updated_at":"2018-11-05T14:24:34.499+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":827196, + "value":"Yes", + "question_id":12947, + "created_at":"2019-10-14T12:27:58.735+02:00", + "updated_at":"2019-10-14T12:27:58.735+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":827391, + "value":"No", + "question_id":12947, + "created_at":"2019-10-17T09:25:58.486+02:00", + "updated_at":"2019-10-17T09:25:58.486+02:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377231, + "value":"", + "question_id":12947, + "created_at":"2018-04-26T10:04:33.609+02:00", + "updated_at":"2018-04-26T10:04:33.609+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":1481996, + "value":"Yes", + "question_id":12947, + "created_at":"2020-11-10T12:21:32.203+01:00", + "updated_at":"2020-11-10T12:21:32.203+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":1488524, + "value":"Yes", + "question_id":12947, + "created_at":"2020-11-27T09:51:22.064+01:00", + "updated_at":"2020-11-27T09:51:22.064+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":1493628, + "value":"Planned", + "question_id":12947, + "created_at":"2020-12-18T14:46:18.998+01:00", + "updated_at":"2020-12-18T14:46:18.998+01:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"interfederation", + "title":"Do you offer Interfederation services?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Interfederation", + "title_detailed":"Participation in an inter-federation (i.e. eduGAIN, KALMAR).", + "tags":[ + "identity" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365599, + "value":"No", + "question_id":12949, + "created_at":"2017-09-06T12:15:10.981+02:00", + "updated_at":"2017-09-06T12:15:10.981+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365903, + "value":"No", + "question_id":12949, + "created_at":"2017-09-13T13:43:23.649+02:00", + "updated_at":"2017-09-13T13:43:23.649+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365948, + "value":"No", + "question_id":12949, + "created_at":"2017-09-13T14:14:26.576+02:00", + "updated_at":"2017-09-13T14:14:26.576+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366343, + "value":"No", + "question_id":12949, + "created_at":"2017-09-29T13:48:38.642+02:00", + "updated_at":"2017-09-29T13:48:38.642+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366561, + "value":"No", + "question_id":12949, + "created_at":"2017-10-08T09:14:37.357+02:00", + "updated_at":"2017-10-08T09:14:37.357+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":366656, + "value":"No", + "question_id":12949, + "created_at":"2017-10-09T11:11:28.293+02:00", + "updated_at":"2017-10-09T11:11:28.293+02:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366760, + "value":"No", + "question_id":12949, + "created_at":"2017-10-10T12:59:13.101+02:00", + "updated_at":"2017-10-10T12:59:13.101+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":366817, + "value":"No", + "question_id":12949, + "created_at":"2017-10-10T16:18:22.989+02:00", + "updated_at":"2017-10-10T16:18:22.989+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366900, + "value":"No", + "question_id":12949, + "created_at":"2017-10-11T09:38:55.454+02:00", + "updated_at":"2017-10-11T09:38:55.454+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367230, + "value":"No", + "question_id":12949, + "created_at":"2017-10-11T14:15:04.233+02:00", + "updated_at":"2017-10-11T14:15:04.233+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367930, + "value":"No", + "question_id":12949, + "created_at":"2017-10-24T13:19:46.402+02:00", + "updated_at":"2017-10-24T13:19:46.402+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":368176, + "value":"No", + "question_id":12949, + "created_at":"2017-10-30T09:21:49.693+01:00", + "updated_at":"2017-10-30T09:21:49.693+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368515, + "value":"Yes", + "question_id":12949, + "created_at":"2017-10-31T14:29:50.185+01:00", + "updated_at":"2017-10-31T14:29:50.185+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369070, + "value":"Yes", + "question_id":12949, + "created_at":"2017-11-10T11:03:25.659+01:00", + "updated_at":"2017-11-10T11:03:25.659+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369214, + "value":"No", + "question_id":12949, + "created_at":"2017-11-10T15:35:47.204+01:00", + "updated_at":"2017-11-10T15:35:47.204+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369382, + "value":"No", + "question_id":12949, + "created_at":"2017-11-11T20:44:26.256+01:00", + "updated_at":"2017-11-11T20:44:26.256+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370201, + "value":"No", + "question_id":12949, + "created_at":"2017-11-23T14:07:17.105+01:00", + "updated_at":"2017-11-23T14:07:17.105+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370754, + "value":"No", + "question_id":12949, + "created_at":"2017-11-27T09:34:05.968+01:00", + "updated_at":"2017-11-27T09:34:05.968+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370947, + "value":"No", + "question_id":12949, + "created_at":"2017-11-27T10:38:51.297+01:00", + "updated_at":"2017-11-27T10:38:51.297+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371117, + "value":"No", + "question_id":12949, + "created_at":"2017-11-27T13:47:01.767+01:00", + "updated_at":"2017-11-27T13:47:01.767+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371750, + "value":"No", + "question_id":12949, + "created_at":"2017-11-28T13:11:03.953+01:00", + "updated_at":"2017-11-28T13:11:03.953+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372291, + "value":"No", + "question_id":12949, + "created_at":"2017-11-29T12:24:53.031+01:00", + "updated_at":"2017-11-29T12:24:53.031+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372617, + "value":"No", + "question_id":12949, + "created_at":"2017-11-29T21:40:55.549+01:00", + "updated_at":"2017-11-29T21:40:55.549+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373242, + "value":"Planned", + "question_id":12949, + "created_at":"2017-12-04T11:10:55.813+01:00", + "updated_at":"2017-12-04T11:10:55.813+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373689, + "value":"No", + "question_id":12949, + "created_at":"2017-12-04T17:56:41.283+01:00", + "updated_at":"2017-12-04T17:56:41.283+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374319, + "value":"No", + "question_id":12949, + "created_at":"2017-12-06T13:01:10.456+01:00", + "updated_at":"2017-12-06T13:01:10.456+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374924, + "value":"Yes", + "question_id":12949, + "created_at":"2017-12-14T12:47:42.130+01:00", + "updated_at":"2017-12-14T12:47:42.130+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375022, + "value":"Yes", + "question_id":12949, + "created_at":"2017-12-14T14:20:19.086+01:00", + "updated_at":"2017-12-14T14:20:19.086+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375321, + "value":"Yes", + "question_id":12949, + "created_at":"2017-12-27T14:41:08.109+01:00", + "updated_at":"2017-12-27T14:41:08.109+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375432, + "value":"Yes", + "question_id":12949, + "created_at":"2017-12-28T10:08:35.835+01:00", + "updated_at":"2017-12-28T10:08:35.835+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377834, + "value":"", + "question_id":12949, + "created_at":"2018-04-26T10:04:38.924+02:00", + "updated_at":"2018-04-26T10:04:38.924+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":377835, + "value":"", + "question_id":12949, + "created_at":"2018-04-26T10:04:38.933+02:00", + "updated_at":"2018-04-26T10:04:38.933+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377836, + "value":"", + "question_id":12949, + "created_at":"2018-04-26T10:04:38.938+02:00", + "updated_at":"2018-04-26T10:04:38.938+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":377839, + "value":"", + "question_id":12949, + "created_at":"2018-04-26T10:04:38.953+02:00", + "updated_at":"2018-04-26T10:04:38.953+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":377840, + "value":"", + "question_id":12949, + "created_at":"2018-04-26T10:04:38.964+02:00", + "updated_at":"2018-04-26T10:04:38.964+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":377841, + "value":"", + "question_id":12949, + "created_at":"2018-04-26T10:04:38.970+02:00", + "updated_at":"2018-04-26T10:04:38.970+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":377842, + "value":"", + "question_id":12949, + "created_at":"2018-04-26T10:04:38.975+02:00", + "updated_at":"2018-04-26T10:04:38.975+02:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377843, + "value":"", + "question_id":12949, + "created_at":"2018-04-26T10:04:38.983+02:00", + "updated_at":"2018-04-26T10:04:38.983+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377844, + "value":"", + "question_id":12949, + "created_at":"2018-04-26T10:04:39.001+02:00", + "updated_at":"2018-04-26T10:04:39.001+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383944, + "value":"No", + "question_id":12949, + "created_at":"2017-12-05T15:55:14.851+01:00", + "updated_at":"2017-12-05T15:55:14.851+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756404, + "value":"Yes", + "question_id":12949, + "created_at":"2018-11-05T14:33:20.481+01:00", + "updated_at":"2018-11-05T14:33:20.481+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377845, + "value":"", + "question_id":12949, + "created_at":"2018-04-26T10:04:39.008+02:00", + "updated_at":"2018-04-26T10:04:39.008+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":1494274, + "value":"No", + "question_id":12949, + "created_at":"2021-01-14T15:02:58.381+01:00", + "updated_at":"2021-01-14T15:02:58.381+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internet-radio-tv", + "title":"Do you offer Internet TV/radio ?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"TV/radio streaming", + "title_detailed":"Internet and radio streaming services.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365632, + "value":"No", + "question_id":12905, + "created_at":"2017-09-06T12:18:41.816+02:00", + "updated_at":"2017-09-06T12:18:41.816+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365920, + "value":"No", + "question_id":12905, + "created_at":"2017-09-13T13:45:45.302+02:00", + "updated_at":"2017-09-13T13:45:45.302+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366364, + "value":"No", + "question_id":12905, + "created_at":"2017-09-29T13:52:23.237+02:00", + "updated_at":"2017-09-29T13:52:23.237+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366883, + "value":"No", + "question_id":12905, + "created_at":"2017-10-11T09:36:09.109+02:00", + "updated_at":"2017-10-11T09:36:09.109+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367488, + "value":"No", + "question_id":12905, + "created_at":"2017-10-17T12:05:19.955+02:00", + "updated_at":"2017-10-17T12:05:19.955+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367754, + "value":"No", + "question_id":12905, + "created_at":"2017-10-23T19:33:51.302+02:00", + "updated_at":"2017-10-23T19:33:51.302+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367957, + "value":"No", + "question_id":12905, + "created_at":"2017-10-24T13:27:45.882+02:00", + "updated_at":"2017-10-24T13:27:45.882+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368936, + "value":"Yes", + "question_id":12905, + "created_at":"2017-11-08T15:48:58.674+01:00", + "updated_at":"2017-11-08T15:48:58.674+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369242, + "value":"Yes", + "question_id":12905, + "created_at":"2017-11-10T15:39:27.747+01:00", + "updated_at":"2017-11-10T15:39:27.747+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369703, + "value":"Yes", + "question_id":12905, + "created_at":"2017-11-21T11:43:15.869+01:00", + "updated_at":"2017-11-21T11:43:15.869+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369828, + "value":"No", + "question_id":12905, + "created_at":"2017-11-21T13:48:04.193+01:00", + "updated_at":"2017-11-21T13:48:04.193+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370232, + "value":"No", + "question_id":12905, + "created_at":"2017-11-23T14:12:39.942+01:00", + "updated_at":"2017-11-23T14:12:39.942+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":370394, + "value":"Yes", + "question_id":12905, + "created_at":"2017-11-24T16:40:40.101+01:00", + "updated_at":"2017-11-24T16:40:40.101+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370777, + "value":"No", + "question_id":12905, + "created_at":"2017-11-27T09:36:36.525+01:00", + "updated_at":"2017-11-27T09:36:36.525+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371292, + "value":"No", + "question_id":12905, + "created_at":"2017-11-27T14:29:23.157+01:00", + "updated_at":"2017-11-27T14:29:23.157+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371430, + "value":"No", + "question_id":12905, + "created_at":"2017-11-27T14:48:16.903+01:00", + "updated_at":"2017-11-27T14:48:16.903+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371780, + "value":"No", + "question_id":12905, + "created_at":"2017-11-28T13:18:44.637+01:00", + "updated_at":"2017-11-28T13:18:44.637+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372327, + "value":"No", + "question_id":12905, + "created_at":"2017-11-29T12:34:07.952+01:00", + "updated_at":"2017-11-29T12:34:07.952+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372650, + "value":"No", + "question_id":12905, + "created_at":"2017-11-29T21:47:03.558+01:00", + "updated_at":"2017-11-29T21:47:03.558+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372770, + "value":"No", + "question_id":12905, + "created_at":"2017-11-30T08:33:51.560+01:00", + "updated_at":"2017-11-30T08:33:51.560+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373260, + "value":"Yes", + "question_id":12905, + "created_at":"2017-12-04T11:15:05.681+01:00", + "updated_at":"2017-12-04T11:15:05.681+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373713, + "value":"Yes", + "question_id":12905, + "created_at":"2017-12-04T18:00:21.665+01:00", + "updated_at":"2017-12-04T18:00:21.665+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374354, + "value":"No", + "question_id":12905, + "created_at":"2017-12-06T13:15:01.396+01:00", + "updated_at":"2017-12-06T13:15:01.396+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374727, + "value":"No", + "question_id":12905, + "created_at":"2017-12-13T11:16:30.580+01:00", + "updated_at":"2017-12-13T11:16:30.580+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375469, + "value":"Yes", + "question_id":12905, + "created_at":"2017-12-28T10:20:04.686+01:00", + "updated_at":"2017-12-28T10:20:04.686+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375730, + "value":"No", + "question_id":12905, + "created_at":"2018-01-18T13:27:41.909+01:00", + "updated_at":"2018-01-18T13:27:41.909+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":376016, + "value":"No", + "question_id":12905, + "created_at":"2018-02-16T09:49:42.190+01:00", + "updated_at":"2018-02-16T09:49:42.190+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":378618, + "value":"", + "question_id":12905, + "created_at":"2018-04-26T10:04:46.119+02:00", + "updated_at":"2018-04-26T10:04:46.119+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":378619, + "value":"", + "question_id":12905, + "created_at":"2018-04-26T10:04:46.132+02:00", + "updated_at":"2018-04-26T10:04:46.132+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":378620, + "value":"", + "question_id":12905, + "created_at":"2018-04-26T10:04:46.138+02:00", + "updated_at":"2018-04-26T10:04:46.138+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":378622, + "value":"", + "question_id":12905, + "created_at":"2018-04-26T10:04:46.154+02:00", + "updated_at":"2018-04-26T10:04:46.154+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":378623, + "value":"", + "question_id":12905, + "created_at":"2018-04-26T10:04:46.163+02:00", + "updated_at":"2018-04-26T10:04:46.163+02:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":378624, + "value":"", + "question_id":12905, + "created_at":"2018-04-26T10:04:46.176+02:00", + "updated_at":"2018-04-26T10:04:46.176+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":378625, + "value":"", + "question_id":12905, + "created_at":"2018-04-26T10:04:46.183+02:00", + "updated_at":"2018-04-26T10:04:46.183+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":378627, + "value":"", + "question_id":12905, + "created_at":"2018-04-26T10:04:46.201+02:00", + "updated_at":"2018-04-26T10:04:46.201+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":378628, + "value":"", + "question_id":12905, + "created_at":"2018-04-26T10:04:46.209+02:00", + "updated_at":"2018-04-26T10:04:46.209+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":378629, + "value":"", + "question_id":12905, + "created_at":"2018-04-26T10:04:46.224+02:00", + "updated_at":"2018-04-26T10:04:46.224+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":378630, + "value":"", + "question_id":12905, + "created_at":"2018-04-26T10:04:46.234+02:00", + "updated_at":"2018-04-26T10:04:46.234+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":378631, + "value":"", + "question_id":12905, + "created_at":"2018-04-26T10:04:46.241+02:00", + "updated_at":"2018-04-26T10:04:46.241+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383926, + "value":"No", + "question_id":12905, + "created_at":"2017-12-06T13:40:13.420+01:00", + "updated_at":"2017-12-06T13:40:13.420+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641571, + "value":"Yes", + "question_id":12905, + "created_at":"2018-10-30T14:02:37.524+01:00", + "updated_at":"2018-10-30T14:02:37.524+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":378632, + "value":"", + "question_id":12905, + "created_at":"2018-04-26T10:04:46.250+02:00", + "updated_at":"2018-04-26T10:04:46.250+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1483394, + "value":"No", + "question_id":12905, + "created_at":"2020-11-16T13:57:44.517+01:00", + "updated_at":"2020-11-16T13:57:44.517+01:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"internship-database", + "title":"Do you offer Database services?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Database services", + "title_detailed":"Provision of tools or services to create or host databases.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365588, + "value":"Yes", + "question_id":12953, + "created_at":"2017-09-06T12:14:09.920+02:00", + "updated_at":"2017-09-06T12:14:09.920+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365792, + "value":"Yes", + "question_id":12953, + "created_at":"2017-09-07T15:50:50.133+02:00", + "updated_at":"2017-09-07T15:50:50.133+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365898, + "value":"Yes", + "question_id":12953, + "created_at":"2017-09-13T13:42:45.013+02:00", + "updated_at":"2017-09-13T13:42:45.013+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366330, + "value":"Yes", + "question_id":12953, + "created_at":"2017-09-29T13:45:30.047+02:00", + "updated_at":"2017-09-29T13:45:30.047+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366611, + "value":"Yes", + "question_id":12953, + "created_at":"2017-10-08T09:21:53.219+02:00", + "updated_at":"2017-10-08T09:21:53.219+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366755, + "value":"Yes", + "question_id":12953, + "created_at":"2017-10-10T12:54:50.587+02:00", + "updated_at":"2017-10-10T12:54:50.587+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367534, + "value":"Yes", + "question_id":12953, + "created_at":"2017-10-17T14:30:39.711+02:00", + "updated_at":"2017-10-17T14:30:39.711+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367715, + "value":"Yes", + "question_id":12953, + "created_at":"2017-10-23T19:27:08.440+02:00", + "updated_at":"2017-10-23T19:27:08.440+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367917, + "value":"Yes", + "question_id":12953, + "created_at":"2017-10-24T13:16:32.987+02:00", + "updated_at":"2017-10-24T13:16:32.987+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":368228, + "value":"Yes", + "question_id":12953, + "created_at":"2017-10-30T12:43:20.345+01:00", + "updated_at":"2017-10-30T12:43:20.345+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368730, + "value":"Yes", + "question_id":12953, + "created_at":"2017-11-02T13:23:52.251+01:00", + "updated_at":"2017-11-02T13:23:52.251+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368804, + "value":"Yes", + "question_id":12953, + "created_at":"2017-11-06T16:13:27.575+01:00", + "updated_at":"2017-11-06T16:13:27.575+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369201, + "value":"Yes", + "question_id":12953, + "created_at":"2017-11-10T15:34:07.894+01:00", + "updated_at":"2017-11-10T15:34:07.894+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369373, + "value":"Yes", + "question_id":12953, + "created_at":"2017-11-11T20:41:19.156+01:00", + "updated_at":"2017-11-11T20:41:19.156+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370176, + "value":"Yes", + "question_id":12953, + "created_at":"2017-11-23T14:00:04.983+01:00", + "updated_at":"2017-11-23T14:00:04.983+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370740, + "value":"Yes", + "question_id":12953, + "created_at":"2017-11-27T09:32:53.746+01:00", + "updated_at":"2017-11-27T09:32:53.746+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370940, + "value":"Yes", + "question_id":12953, + "created_at":"2017-11-27T10:37:57.470+01:00", + "updated_at":"2017-11-27T10:37:57.470+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371108, + "value":"Yes", + "question_id":12953, + "created_at":"2017-11-27T13:46:01.119+01:00", + "updated_at":"2017-11-27T13:46:01.119+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371566, + "value":"Yes", + "question_id":12953, + "created_at":"2017-11-27T16:38:28.563+01:00", + "updated_at":"2017-11-27T16:38:28.563+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371734, + "value":"Yes", + "question_id":12953, + "created_at":"2017-11-28T13:09:34.797+01:00", + "updated_at":"2017-11-28T13:09:34.797+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":372110, + "value":"Yes", + "question_id":12953, + "created_at":"2017-11-28T17:40:04.693+01:00", + "updated_at":"2017-11-28T17:40:04.693+01:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372274, + "value":"Yes", + "question_id":12953, + "created_at":"2017-11-29T12:19:46.867+01:00", + "updated_at":"2017-11-29T12:19:46.867+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372443, + "value":"Yes", + "question_id":12953, + "created_at":"2017-11-29T13:04:10.051+01:00", + "updated_at":"2017-11-29T13:04:10.051+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":373170, + "value":"Yes", + "question_id":12953, + "created_at":"2017-12-01T17:28:09.514+01:00", + "updated_at":"2017-12-01T17:28:09.514+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373235, + "value":"Yes", + "question_id":12953, + "created_at":"2017-12-04T11:09:31.467+01:00", + "updated_at":"2017-12-04T11:09:31.467+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373676, + "value":"Yes", + "question_id":12953, + "created_at":"2017-12-04T17:54:52.305+01:00", + "updated_at":"2017-12-04T17:54:52.305+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374273, + "value":"Yes", + "question_id":12953, + "created_at":"2017-12-06T11:15:40.221+01:00", + "updated_at":"2017-12-06T11:15:40.221+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374916, + "value":"Yes", + "question_id":12953, + "created_at":"2017-12-14T12:46:52.981+01:00", + "updated_at":"2017-12-14T12:46:52.981+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375335, + "value":"Yes", + "question_id":12953, + "created_at":"2017-12-27T14:44:40.371+01:00", + "updated_at":"2017-12-27T14:44:40.371+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375426, + "value":"Yes", + "question_id":12953, + "created_at":"2017-12-28T10:07:30.853+01:00", + "updated_at":"2017-12-28T10:07:30.853+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375820, + "value":"Yes", + "question_id":12953, + "created_at":"2018-01-22T00:49:19.758+01:00", + "updated_at":"2018-01-22T00:49:19.758+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":376047, + "value":"No", + "question_id":12953, + "created_at":"2018-02-16T11:26:09.767+01:00", + "updated_at":"2018-02-16T11:26:09.767+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377577, + "value":"", + "question_id":12953, + "created_at":"2018-04-26T10:04:36.967+02:00", + "updated_at":"2018-04-26T10:04:36.967+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377579, + "value":"", + "question_id":12953, + "created_at":"2018-04-26T10:04:36.980+02:00", + "updated_at":"2018-04-26T10:04:36.980+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":377583, + "value":"", + "question_id":12953, + "created_at":"2018-04-26T10:04:37.007+02:00", + "updated_at":"2018-04-26T10:04:37.007+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377585, + "value":"", + "question_id":12953, + "created_at":"2018-04-26T10:04:37.020+02:00", + "updated_at":"2018-04-26T10:04:37.020+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377586, + "value":"", + "question_id":12953, + "created_at":"2018-04-26T10:04:37.037+02:00", + "updated_at":"2018-04-26T10:04:37.037+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383954, + "value":"Yes", + "question_id":12953, + "created_at":"2017-12-06T13:26:48.222+01:00", + "updated_at":"2017-12-06T13:26:48.222+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618208, + "value":"Yes", + "question_id":12953, + "created_at":"2018-10-28T18:29:18.780+01:00", + "updated_at":"2018-10-28T18:29:18.780+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641543, + "value":"Yes", + "question_id":12953, + "created_at":"2018-10-30T13:48:53.853+01:00", + "updated_at":"2018-10-30T13:48:53.853+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756366, + "value":"Yes", + "question_id":12953, + "created_at":"2018-11-05T14:02:09.447+01:00", + "updated_at":"2018-11-05T14:02:09.447+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":774383, + "value":"Yes", + "question_id":12953, + "created_at":"2018-11-15T12:42:42.710+01:00", + "updated_at":"2018-11-15T12:42:42.710+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377587, + "value":"", + "question_id":12953, + "created_at":"2018-04-26T10:04:37.043+02:00", + "updated_at":"2018-04-26T10:04:37.043+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ip-address-allocation", + "title":"Do you offer IP address allocation (LIR)?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"IP address allocation/LIR", + "title_detailed":"Local Internet Registry service for assigning of IP address space.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365560, + "value":"Yes", + "question_id":12957, + "created_at":"2017-09-06T12:08:11.649+02:00", + "updated_at":"2017-09-06T12:08:11.649+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365673, + "value":"Yes", + "question_id":12957, + "created_at":"2017-09-07T15:30:21.087+02:00", + "updated_at":"2017-09-07T15:30:21.087+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365870, + "value":"Yes", + "question_id":12957, + "created_at":"2017-09-13T13:37:02.642+02:00", + "updated_at":"2017-09-13T13:37:02.642+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":366121, + "value":"Yes", + "question_id":12957, + "created_at":"2017-09-19T14:36:34.800+02:00", + "updated_at":"2017-09-19T14:36:34.800+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366541, + "value":"Yes", + "question_id":12957, + "created_at":"2017-10-08T08:45:42.285+02:00", + "updated_at":"2017-10-08T08:45:42.285+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367070, + "value":"Yes", + "question_id":12957, + "created_at":"2017-10-11T13:10:21.252+02:00", + "updated_at":"2017-10-11T13:10:21.252+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367316, + "value":"Yes", + "question_id":12957, + "created_at":"2017-10-11T20:52:31.205+02:00", + "updated_at":"2017-10-11T20:52:31.205+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367684, + "value":"Yes", + "question_id":12957, + "created_at":"2017-10-23T19:24:00.100+02:00", + "updated_at":"2017-10-23T19:24:00.100+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367873, + "value":"No", + "question_id":12957, + "created_at":"2017-10-24T12:59:57.526+02:00", + "updated_at":"2017-10-24T12:59:57.526+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368615, + "value":"Yes", + "question_id":12957, + "created_at":"2017-11-02T09:52:35.923+01:00", + "updated_at":"2017-11-02T09:52:35.923+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368686, + "value":"Yes", + "question_id":12957, + "created_at":"2017-11-02T13:20:17.137+01:00", + "updated_at":"2017-11-02T13:20:17.137+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369165, + "value":"Yes", + "question_id":12957, + "created_at":"2017-11-10T15:29:23.083+01:00", + "updated_at":"2017-11-10T15:29:23.083+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369317, + "value":"Yes", + "question_id":12957, + "created_at":"2017-11-11T20:18:05.781+01:00", + "updated_at":"2017-11-11T20:18:05.781+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":369862, + "value":"Yes", + "question_id":12957, + "created_at":"2017-11-21T15:46:34.032+01:00", + "updated_at":"2017-11-21T15:46:34.032+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370118, + "value":"Yes", + "question_id":12957, + "created_at":"2017-11-23T13:36:09.807+01:00", + "updated_at":"2017-11-23T13:36:09.807+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370699, + "value":"Yes", + "question_id":12957, + "created_at":"2017-11-27T09:29:06.891+01:00", + "updated_at":"2017-11-27T09:29:06.891+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371100, + "value":"Yes", + "question_id":12957, + "created_at":"2017-11-27T13:44:14.626+01:00", + "updated_at":"2017-11-27T13:44:14.626+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371222, + "value":"No", + "question_id":12957, + "created_at":"2017-11-27T14:18:56.147+01:00", + "updated_at":"2017-11-27T14:18:56.147+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":371617, + "value":"Yes", + "question_id":12957, + "created_at":"2017-11-27T16:50:00.046+01:00", + "updated_at":"2017-11-27T16:50:00.046+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371694, + "value":"Yes", + "question_id":12957, + "created_at":"2017-11-28T13:05:21.682+01:00", + "updated_at":"2017-11-28T13:05:21.682+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":372103, + "value":"Yes", + "question_id":12957, + "created_at":"2017-11-28T17:35:25.660+01:00", + "updated_at":"2017-11-28T17:35:25.660+01:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372215, + "value":"Yes", + "question_id":12957, + "created_at":"2017-11-29T11:57:33.095+01:00", + "updated_at":"2017-11-29T11:57:33.095+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372565, + "value":"Yes", + "question_id":12957, + "created_at":"2017-11-29T21:31:38.411+01:00", + "updated_at":"2017-11-29T21:31:38.411+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373277, + "value":"Yes", + "question_id":12957, + "created_at":"2017-12-04T11:17:10.823+01:00", + "updated_at":"2017-12-04T11:17:10.823+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373635, + "value":"Planned", + "question_id":12957, + "created_at":"2017-12-04T17:48:58.648+01:00", + "updated_at":"2017-12-04T17:48:58.648+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374219, + "value":"Yes", + "question_id":12957, + "created_at":"2017-12-06T10:53:42.867+01:00", + "updated_at":"2017-12-06T10:53:42.867+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374902, + "value":"Yes", + "question_id":12957, + "created_at":"2017-12-14T12:44:40.660+01:00", + "updated_at":"2017-12-14T12:44:40.660+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":374969, + "value":"Planned", + "question_id":12957, + "created_at":"2017-12-14T14:14:30.770+01:00", + "updated_at":"2017-12-14T14:14:30.770+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375346, + "value":"Yes", + "question_id":12957, + "created_at":"2017-12-27T14:48:31.108+01:00", + "updated_at":"2017-12-27T14:48:31.108+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375391, + "value":"Yes", + "question_id":12957, + "created_at":"2017-12-28T10:00:37.096+01:00", + "updated_at":"2017-12-28T10:00:37.096+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375791, + "value":"Yes", + "question_id":12957, + "created_at":"2018-01-22T00:40:55.051+01:00", + "updated_at":"2018-01-22T00:40:55.051+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":376306, + "value":"", + "question_id":12957, + "created_at":"2018-04-26T10:04:22.962+02:00", + "updated_at":"2018-04-26T10:04:22.962+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":376308, + "value":"", + "question_id":12957, + "created_at":"2018-04-26T10:04:22.981+02:00", + "updated_at":"2018-04-26T10:04:22.981+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":376313, + "value":"", + "question_id":12957, + "created_at":"2018-04-26T10:04:23.029+02:00", + "updated_at":"2018-04-26T10:04:23.029+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":376315, + "value":"", + "question_id":12957, + "created_at":"2018-04-26T10:04:23.049+02:00", + "updated_at":"2018-04-26T10:04:23.049+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":376316, + "value":"", + "question_id":12957, + "created_at":"2018-04-26T10:04:23.077+02:00", + "updated_at":"2018-04-26T10:04:23.077+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383947, + "value":"Yes", + "question_id":12957, + "created_at":"2017-12-05T15:42:40.181+01:00", + "updated_at":"2017-12-05T15:42:40.181+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618211, + "value":"Yes", + "question_id":12957, + "created_at":"2018-10-28T18:30:00.464+01:00", + "updated_at":"2018-10-28T18:30:00.464+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641545, + "value":"Yes", + "question_id":12957, + "created_at":"2018-10-30T13:49:40.488+01:00", + "updated_at":"2018-10-30T13:49:40.488+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756368, + "value":"Yes", + "question_id":12957, + "created_at":"2018-11-05T14:02:29.135+01:00", + "updated_at":"2018-11-05T14:02:29.135+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":774385, + "value":"Yes", + "question_id":12957, + "created_at":"2018-11-15T12:43:27.159+01:00", + "updated_at":"2018-11-15T12:43:27.159+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":371478, + "value":"Yes", + "question_id":12957, + "created_at":"2017-11-27T15:00:06.433+01:00", + "updated_at":"2017-11-27T15:00:06.433+01:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":1493626, + "value":"Planned", + "question_id":12957, + "created_at":"2020-12-18T14:44:43.580+01:00", + "updated_at":"2020-12-18T14:44:43.580+01:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ipv6", + "title":"Do you offer IPv6?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"IPv6", + "title_detailed":"The new version of the Internet Protocol (IP) that should eventually replace the current IP (version 4).", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365589, + "value":"No", + "question_id":12959, + "created_at":"2017-09-06T12:14:12.844+02:00", + "updated_at":"2017-09-06T12:14:12.844+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365791, + "value":"No", + "question_id":12959, + "created_at":"2017-09-07T15:50:41.576+02:00", + "updated_at":"2017-09-07T15:50:41.576+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365899, + "value":"No", + "question_id":12959, + "created_at":"2017-09-13T13:42:51.570+02:00", + "updated_at":"2017-09-13T13:42:51.570+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366610, + "value":"No", + "question_id":12959, + "created_at":"2017-10-08T09:21:50.104+02:00", + "updated_at":"2017-10-08T09:21:50.104+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367140, + "value":"No", + "question_id":12959, + "created_at":"2017-10-11T13:34:10.808+02:00", + "updated_at":"2017-10-11T13:34:10.808+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367222, + "value":"No", + "question_id":12959, + "created_at":"2017-10-11T14:13:18.233+02:00", + "updated_at":"2017-10-11T14:13:18.233+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367716, + "value":"No", + "question_id":12959, + "created_at":"2017-10-23T19:27:14.768+02:00", + "updated_at":"2017-10-23T19:27:14.768+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367919, + "value":"Planned", + "question_id":12959, + "created_at":"2017-10-24T13:16:56.916+02:00", + "updated_at":"2017-10-24T13:16:56.916+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":368165, + "value":"Yes", + "question_id":12959, + "created_at":"2017-10-30T09:20:24.926+01:00", + "updated_at":"2017-10-30T09:20:24.926+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368732, + "value":"No", + "question_id":12959, + "created_at":"2017-11-02T13:23:56.749+01:00", + "updated_at":"2017-11-02T13:23:56.749+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368997, + "value":"", + "question_id":12959, + "created_at":"2017-11-09T12:48:45.546+01:00", + "updated_at":"2017-11-09T12:48:45.546+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369202, + "value":"No", + "question_id":12959, + "created_at":"2017-11-10T15:34:12.930+01:00", + "updated_at":"2017-11-10T15:34:12.930+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369374, + "value":"No", + "question_id":12959, + "created_at":"2017-11-11T20:41:59.094+01:00", + "updated_at":"2017-11-11T20:41:59.094+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369844, + "value":"Yes", + "question_id":12959, + "created_at":"2017-11-21T14:56:35.071+01:00", + "updated_at":"2017-11-21T14:56:35.071+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370178, + "value":"Yes", + "question_id":12959, + "created_at":"2017-11-23T14:01:08.066+01:00", + "updated_at":"2017-11-23T14:01:08.066+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370741, + "value":"No", + "question_id":12959, + "created_at":"2017-11-27T09:33:01.062+01:00", + "updated_at":"2017-11-27T09:33:01.062+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370941, + "value":"No", + "question_id":12959, + "created_at":"2017-11-27T10:38:04.736+01:00", + "updated_at":"2017-11-27T10:38:04.736+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371370, + "value":"No", + "question_id":12959, + "created_at":"2017-11-27T14:37:18.462+01:00", + "updated_at":"2017-11-27T14:37:18.462+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371568, + "value":"No", + "question_id":12959, + "created_at":"2017-11-27T16:38:52.431+01:00", + "updated_at":"2017-11-27T16:38:52.431+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371735, + "value":"Yes", + "question_id":12959, + "created_at":"2017-11-28T13:09:38.793+01:00", + "updated_at":"2017-11-28T13:09:38.793+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372251, + "value":"No", + "question_id":12959, + "created_at":"2017-11-29T12:05:20.277+01:00", + "updated_at":"2017-11-29T12:05:20.277+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372445, + "value":"No", + "question_id":12959, + "created_at":"2017-11-29T13:04:44.694+01:00", + "updated_at":"2017-11-29T13:04:44.694+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372603, + "value":"Yes", + "question_id":12959, + "created_at":"2017-11-29T21:38:24.704+01:00", + "updated_at":"2017-11-29T21:38:24.704+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":372887, + "value":"Planned", + "question_id":12959, + "created_at":"2017-11-30T14:21:36.341+01:00", + "updated_at":"2017-11-30T14:21:36.341+01:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373305, + "value":"No", + "question_id":12959, + "created_at":"2017-12-04T11:22:58.470+01:00", + "updated_at":"2017-12-04T11:22:58.470+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373677, + "value":"Yes", + "question_id":12959, + "created_at":"2017-12-04T17:54:56.363+01:00", + "updated_at":"2017-12-04T17:54:56.363+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374275, + "value":"No", + "question_id":12959, + "created_at":"2017-12-06T11:16:15.838+01:00", + "updated_at":"2017-12-06T11:16:15.838+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374917, + "value":"Yes", + "question_id":12959, + "created_at":"2017-12-14T12:46:58.444+01:00", + "updated_at":"2017-12-14T12:46:58.444+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375012, + "value":"No", + "question_id":12959, + "created_at":"2017-12-14T14:19:20.704+01:00", + "updated_at":"2017-12-14T14:19:20.704+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375333, + "value":"Yes", + "question_id":12959, + "created_at":"2017-12-27T14:44:19.972+01:00", + "updated_at":"2017-12-27T14:44:19.972+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375427, + "value":"No", + "question_id":12959, + "created_at":"2017-12-28T10:07:37.085+01:00", + "updated_at":"2017-12-28T10:07:37.085+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377615, + "value":"", + "question_id":12959, + "created_at":"2018-04-26T10:04:37.259+02:00", + "updated_at":"2018-04-26T10:04:37.259+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377617, + "value":"", + "question_id":12959, + "created_at":"2018-04-26T10:04:37.273+02:00", + "updated_at":"2018-04-26T10:04:37.273+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":377619, + "value":"", + "question_id":12959, + "created_at":"2018-04-26T10:04:37.283+02:00", + "updated_at":"2018-04-26T10:04:37.283+02:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":377622, + "value":"", + "question_id":12959, + "created_at":"2018-04-26T10:04:37.307+02:00", + "updated_at":"2018-04-26T10:04:37.307+02:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377623, + "value":"", + "question_id":12959, + "created_at":"2018-04-26T10:04:37.315+02:00", + "updated_at":"2018-04-26T10:04:37.315+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":377624, + "value":"", + "question_id":12959, + "created_at":"2018-04-26T10:04:37.337+02:00", + "updated_at":"2018-04-26T10:04:37.337+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377625, + "value":"", + "question_id":12959, + "created_at":"2018-04-26T10:04:37.345+02:00", + "updated_at":"2018-04-26T10:04:37.345+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383943, + "value":"No", + "question_id":12959, + "created_at":"2017-12-06T13:27:10.636+01:00", + "updated_at":"2017-12-06T13:27:10.636+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618240, + "value":"Yes", + "question_id":12959, + "created_at":"2018-10-28T18:43:33.279+01:00", + "updated_at":"2018-10-28T18:43:33.279+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":774399, + "value":"Yes", + "question_id":12959, + "created_at":"2018-11-15T12:50:11.530+01:00", + "updated_at":"2018-11-15T12:50:11.530+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377626, + "value":"", + "question_id":12959, + "created_at":"2018-04-26T10:04:37.352+02:00", + "updated_at":"2018-04-26T10:04:37.352+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":1493638, + "value":"Yes", + "question_id":12959, + "created_at":"2020-12-18T15:01:40.961+01:00", + "updated_at":"2020-12-18T15:01:40.961+01:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"ix-operation", + "title":"Do you offer National IX operation", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"National IX operation", + "title_detailed":"Operation of a national Internet Exchange.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365639, + "value":"Yes", + "question_id":12961, + "created_at":"2017-09-06T12:19:05.714+02:00", + "updated_at":"2017-09-06T12:19:05.714+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365706, + "value":"No", + "question_id":12961, + "created_at":"2017-09-07T15:34:08.873+02:00", + "updated_at":"2017-09-07T15:34:08.873+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365925, + "value":"No", + "question_id":12961, + "created_at":"2017-09-13T13:46:05.802+02:00", + "updated_at":"2017-09-13T13:46:05.802+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366370, + "value":"No", + "question_id":12961, + "created_at":"2017-09-29T13:52:53.907+02:00", + "updated_at":"2017-09-29T13:52:53.907+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366594, + "value":"No", + "question_id":12961, + "created_at":"2017-10-08T09:19:10.110+02:00", + "updated_at":"2017-10-08T09:19:10.110+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366877, + "value":"No", + "question_id":12961, + "created_at":"2017-10-11T09:35:38.135+02:00", + "updated_at":"2017-10-11T09:35:38.135+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367548, + "value":"Yes", + "question_id":12961, + "created_at":"2017-10-17T14:42:56.126+02:00", + "updated_at":"2017-10-17T14:42:56.126+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367760, + "value":"Yes", + "question_id":12961, + "created_at":"2017-10-23T19:36:04.388+02:00", + "updated_at":"2017-10-23T19:36:04.388+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367963, + "value":"No", + "question_id":12961, + "created_at":"2017-10-24T13:29:30.020+02:00", + "updated_at":"2017-10-24T13:29:30.020+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368962, + "value":"Yes", + "question_id":12961, + "created_at":"2017-11-08T15:57:47.955+01:00", + "updated_at":"2017-11-08T15:57:47.955+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369086, + "value":"No", + "question_id":12961, + "created_at":"2017-11-10T11:15:56.378+01:00", + "updated_at":"2017-11-10T11:15:56.378+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369248, + "value":"No", + "question_id":12961, + "created_at":"2017-11-10T15:40:00.186+01:00", + "updated_at":"2017-11-10T15:40:00.186+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369807, + "value":"Yes", + "question_id":12961, + "created_at":"2017-11-21T13:42:30.474+01:00", + "updated_at":"2017-11-21T13:42:30.474+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370238, + "value":"No", + "question_id":12961, + "created_at":"2017-11-23T14:12:59.526+01:00", + "updated_at":"2017-11-23T14:12:59.526+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370784, + "value":"No", + "question_id":12961, + "created_at":"2017-11-27T09:37:06.228+01:00", + "updated_at":"2017-11-27T09:37:06.228+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371269, + "value":"Yes", + "question_id":12961, + "created_at":"2017-11-27T14:22:30.306+01:00", + "updated_at":"2017-11-27T14:22:30.306+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371434, + "value":"Yes", + "question_id":12961, + "created_at":"2017-11-27T14:49:42.198+01:00", + "updated_at":"2017-11-27T14:49:42.198+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371787, + "value":"No", + "question_id":12961, + "created_at":"2017-11-28T13:19:11.921+01:00", + "updated_at":"2017-11-28T13:19:11.921+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":372126, + "value":"Yes", + "question_id":12961, + "created_at":"2017-11-28T17:47:36.086+01:00", + "updated_at":"2017-11-28T17:47:36.086+01:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372333, + "value":"No", + "question_id":12961, + "created_at":"2017-11-29T12:34:40.990+01:00", + "updated_at":"2017-11-29T12:34:40.990+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372656, + "value":"No", + "question_id":12961, + "created_at":"2017-11-29T21:48:08.033+01:00", + "updated_at":"2017-11-29T21:48:08.033+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372775, + "value":"Planned", + "question_id":12961, + "created_at":"2017-11-30T08:34:22.852+01:00", + "updated_at":"2017-11-30T08:34:22.852+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373264, + "value":"Yes", + "question_id":12961, + "created_at":"2017-12-04T11:15:22.721+01:00", + "updated_at":"2017-12-04T11:15:22.721+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373719, + "value":"Yes", + "question_id":12961, + "created_at":"2017-12-04T18:00:58.003+01:00", + "updated_at":"2017-12-04T18:00:58.003+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374367, + "value":"Planned", + "question_id":12961, + "created_at":"2017-12-06T13:17:34.002+01:00", + "updated_at":"2017-12-06T13:17:34.002+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375047, + "value":"Yes", + "question_id":12961, + "created_at":"2017-12-14T14:22:14.533+01:00", + "updated_at":"2017-12-14T14:22:14.533+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375474, + "value":"Yes", + "question_id":12961, + "created_at":"2017-12-28T10:20:18.916+01:00", + "updated_at":"2017-12-28T10:20:18.916+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":378908, + "value":"", + "question_id":12961, + "created_at":"2018-04-26T10:04:48.807+02:00", + "updated_at":"2018-04-26T10:04:48.807+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":378909, + "value":"", + "question_id":12961, + "created_at":"2018-04-26T10:04:48.817+02:00", + "updated_at":"2018-04-26T10:04:48.817+02:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":378910, + "value":"", + "question_id":12961, + "created_at":"2018-04-26T10:04:48.826+02:00", + "updated_at":"2018-04-26T10:04:48.826+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":378911, + "value":"", + "question_id":12961, + "created_at":"2018-04-26T10:04:48.832+02:00", + "updated_at":"2018-04-26T10:04:48.832+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":378913, + "value":"", + "question_id":12961, + "created_at":"2018-04-26T10:04:48.846+02:00", + "updated_at":"2018-04-26T10:04:48.846+02:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":378914, + "value":"", + "question_id":12961, + "created_at":"2018-04-26T10:04:48.855+02:00", + "updated_at":"2018-04-26T10:04:48.855+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":378915, + "value":"", + "question_id":12961, + "created_at":"2018-04-26T10:04:48.863+02:00", + "updated_at":"2018-04-26T10:04:48.863+02:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":378916, + "value":"", + "question_id":12961, + "created_at":"2018-04-26T10:04:48.878+02:00", + "updated_at":"2018-04-26T10:04:48.878+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":378918, + "value":"", + "question_id":12961, + "created_at":"2018-04-26T10:04:48.898+02:00", + "updated_at":"2018-04-26T10:04:48.898+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":378919, + "value":"", + "question_id":12961, + "created_at":"2018-04-26T10:04:48.906+02:00", + "updated_at":"2018-04-26T10:04:48.906+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":378920, + "value":"", + "question_id":12961, + "created_at":"2018-04-26T10:04:48.925+02:00", + "updated_at":"2018-04-26T10:04:48.925+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":378921, + "value":"", + "question_id":12961, + "created_at":"2018-04-26T10:04:48.932+02:00", + "updated_at":"2018-04-26T10:04:48.932+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383948, + "value":"No", + "question_id":12961, + "created_at":"2017-12-05T16:00:23.766+01:00", + "updated_at":"2017-12-05T16:00:23.766+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641566, + "value":"No", + "question_id":12961, + "created_at":"2018-10-30T13:59:21.630+01:00", + "updated_at":"2018-10-30T13:59:21.630+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":1227749, + "value":"Yes", + "question_id":12961, + "created_at":"2019-11-21T09:50:10.476+01:00", + "updated_at":"2019-11-21T09:50:10.476+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":378922, + "value":"", + "question_id":12961, + "created_at":"2018-04-26T10:04:48.942+02:00", + "updated_at":"2018-04-26T10:04:48.942+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"journal-library-access", + "title":"Do you offer Journal/library access?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Journal access", + "title_detailed":"Access to academic journals.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "41":{ + "id":365877, + "value":"Yes", + "question_id":12989, + "created_at":"2017-09-13T13:40:18.760+02:00", + "updated_at":"2017-09-13T13:40:18.760+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365990, + "value":"Yes", + "question_id":12989, + "created_at":"2017-09-13T14:19:47.310+02:00", + "updated_at":"2017-09-13T14:19:47.310+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":366133, + "value":"Yes", + "question_id":12989, + "created_at":"2017-09-19T14:45:44.584+02:00", + "updated_at":"2017-09-19T14:45:44.584+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366303, + "value":"No", + "question_id":12989, + "created_at":"2017-09-29T13:40:53.958+02:00", + "updated_at":"2017-09-29T13:40:53.958+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366546, + "value":"Yes", + "question_id":12989, + "created_at":"2017-10-08T08:46:30.971+02:00", + "updated_at":"2017-10-08T08:46:30.971+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366743, + "value":"No", + "question_id":12989, + "created_at":"2017-10-10T11:40:05.492+02:00", + "updated_at":"2017-10-10T11:40:05.492+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367691, + "value":"No", + "question_id":12989, + "created_at":"2017-10-23T19:24:44.115+02:00", + "updated_at":"2017-10-23T19:24:44.115+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367882, + "value":"No", + "question_id":12989, + "created_at":"2017-10-24T13:03:16.267+02:00", + "updated_at":"2017-10-24T13:03:16.267+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368448, + "value":"Yes", + "question_id":12989, + "created_at":"2017-10-31T14:18:51.686+01:00", + "updated_at":"2017-10-31T14:18:51.686+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368702, + "value":"Yes", + "question_id":12989, + "created_at":"2017-11-02T13:20:59.379+01:00", + "updated_at":"2017-11-02T13:20:59.379+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369174, + "value":"Yes", + "question_id":12989, + "created_at":"2017-11-10T15:30:55.784+01:00", + "updated_at":"2017-11-10T15:30:55.784+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369333, + "value":"Yes", + "question_id":12989, + "created_at":"2017-11-11T20:29:56.274+01:00", + "updated_at":"2017-11-11T20:29:56.274+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369567, + "value":"Yes", + "question_id":12989, + "created_at":"2017-11-16T15:53:37.991+01:00", + "updated_at":"2017-11-16T15:53:37.991+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369851, + "value":"Yes", + "question_id":12989, + "created_at":"2017-11-21T14:59:28.929+01:00", + "updated_at":"2017-11-21T14:59:28.929+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370131, + "value":"No", + "question_id":12989, + "created_at":"2017-11-23T13:47:43.577+01:00", + "updated_at":"2017-11-23T13:47:43.577+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370708, + "value":"No", + "question_id":12989, + "created_at":"2017-11-27T09:29:53.676+01:00", + "updated_at":"2017-11-27T09:29:53.676+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371231, + "value":"No", + "question_id":12989, + "created_at":"2017-11-27T14:19:48.207+01:00", + "updated_at":"2017-11-27T14:19:48.207+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371288, + "value":"No", + "question_id":12989, + "created_at":"2017-11-27T14:28:58.570+01:00", + "updated_at":"2017-11-27T14:28:58.570+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371703, + "value":"Yes", + "question_id":12989, + "created_at":"2017-11-28T13:06:32.280+01:00", + "updated_at":"2017-11-28T13:06:32.280+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372230, + "value":"Yes", + "question_id":12989, + "created_at":"2017-11-29T12:02:20.942+01:00", + "updated_at":"2017-11-29T12:02:20.942+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372573, + "value":"Yes", + "question_id":12989, + "created_at":"2017-11-29T21:33:24.831+01:00", + "updated_at":"2017-11-29T21:33:24.831+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":373453, + "value":"No", + "question_id":12989, + "created_at":"2017-12-04T12:38:50.002+01:00", + "updated_at":"2017-12-04T12:38:50.002+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373645, + "value":"No", + "question_id":12989, + "created_at":"2017-12-04T17:51:24.947+01:00", + "updated_at":"2017-12-04T17:51:24.947+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374032, + "value":"Planned", + "question_id":12989, + "created_at":"2017-12-06T06:56:33.092+01:00", + "updated_at":"2017-12-06T06:56:33.092+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374237, + "value":"No", + "question_id":12989, + "created_at":"2017-12-06T11:02:20.758+01:00", + "updated_at":"2017-12-06T11:02:20.758+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374908, + "value":"No", + "question_id":12989, + "created_at":"2017-12-14T12:45:19.242+01:00", + "updated_at":"2017-12-14T12:45:19.242+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":374979, + "value":"No", + "question_id":12989, + "created_at":"2017-12-14T14:17:12.574+01:00", + "updated_at":"2017-12-14T14:17:12.574+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375358, + "value":"Planned", + "question_id":12989, + "created_at":"2017-12-27T14:51:01.456+01:00", + "updated_at":"2017-12-27T14:51:01.456+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375398, + "value":"Yes", + "question_id":12989, + "created_at":"2017-12-28T10:01:18.566+01:00", + "updated_at":"2017-12-28T10:01:18.566+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375806, + "value":"Yes", + "question_id":12989, + "created_at":"2018-01-22T00:46:59.320+01:00", + "updated_at":"2018-01-22T00:46:59.320+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":376662, + "value":"", + "question_id":12989, + "created_at":"2018-04-26T10:04:27.279+02:00", + "updated_at":"2018-04-26T10:04:27.279+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":376664, + "value":"", + "question_id":12989, + "created_at":"2018-04-26T10:04:27.300+02:00", + "updated_at":"2018-04-26T10:04:27.300+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":376668, + "value":"", + "question_id":12989, + "created_at":"2018-04-26T10:04:27.345+02:00", + "updated_at":"2018-04-26T10:04:27.345+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":376670, + "value":"", + "question_id":12989, + "created_at":"2018-04-26T10:04:27.365+02:00", + "updated_at":"2018-04-26T10:04:27.365+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":376672, + "value":"", + "question_id":12989, + "created_at":"2018-04-26T10:04:27.395+02:00", + "updated_at":"2018-04-26T10:04:27.395+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383966, + "value":"No", + "question_id":12989, + "created_at":"2017-12-05T15:44:15.075+01:00", + "updated_at":"2017-12-05T15:44:15.075+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618233, + "value":"Yes", + "question_id":12989, + "created_at":"2018-10-28T18:38:31.526+01:00", + "updated_at":"2018-10-28T18:38:31.526+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641561, + "value":"Yes", + "question_id":12989, + "created_at":"2018-10-30T13:56:16.217+01:00", + "updated_at":"2018-10-30T13:56:16.217+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756383, + "value":"Yes", + "question_id":12989, + "created_at":"2018-11-05T14:06:38.627+01:00", + "updated_at":"2018-11-05T14:06:38.627+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":1116393, + "value":"Yes", + "question_id":12989, + "created_at":"2019-11-08T11:46:47.682+01:00", + "updated_at":"2019-11-08T11:46:47.682+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "48":{ + "id":1131005, + "value":"Planned", + "question_id":12989, + "created_at":"2019-11-08T19:35:56.294+01:00", + "updated_at":"2019-11-08T19:35:56.294+01:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":376673, + "value":"", + "question_id":12989, + "created_at":"2018-04-26T10:04:27.405+02:00", + "updated_at":"2018-04-26T10:04:27.405+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":1470695, + "value":"Yes", + "question_id":12989, + "created_at":"2020-10-16T13:59:23.620+02:00", + "updated_at":"2020-10-16T13:59:23.620+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"lambda", + "title":"Do you offer Optical wavelength?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Optical wavelength", + "title_detailed":"Layer 1 optical channel for provision of dedicated capacity to demanding users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365654, + "value":"No", + "question_id":12965, + "created_at":"2017-09-06T12:20:06.534+02:00", + "updated_at":"2017-09-06T12:20:06.534+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365937, + "value":"Yes", + "question_id":12965, + "created_at":"2017-09-13T13:47:08.761+02:00", + "updated_at":"2017-09-13T13:47:08.761+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365970, + "value":"No", + "question_id":12965, + "created_at":"2017-09-13T14:17:49.751+02:00", + "updated_at":"2017-09-13T14:17:49.751+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366383, + "value":"No", + "question_id":12965, + "created_at":"2017-09-29T13:54:31.890+02:00", + "updated_at":"2017-09-29T13:54:31.890+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366782, + "value":"No", + "question_id":12965, + "created_at":"2017-10-10T13:22:49.392+02:00", + "updated_at":"2017-10-10T13:22:49.392+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366858, + "value":"No", + "question_id":12965, + "created_at":"2017-10-11T09:34:07.003+02:00", + "updated_at":"2017-10-11T09:34:07.003+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366962, + "value":"Yes", + "question_id":12965, + "created_at":"2017-10-11T10:52:54.287+02:00", + "updated_at":"2017-10-11T10:52:54.287+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367522, + "value":"Yes", + "question_id":12965, + "created_at":"2017-10-17T12:11:06.045+02:00", + "updated_at":"2017-10-17T12:11:06.045+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367774, + "value":"Yes", + "question_id":12965, + "created_at":"2017-10-23T19:41:06.617+02:00", + "updated_at":"2017-10-23T19:41:06.617+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368572, + "value":"No", + "question_id":12965, + "created_at":"2017-10-31T14:43:08.783+01:00", + "updated_at":"2017-10-31T14:43:08.783+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368823, + "value":"No", + "question_id":12965, + "created_at":"2017-11-07T10:14:54.763+01:00", + "updated_at":"2017-11-07T10:14:54.763+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368953, + "value":"No", + "question_id":12965, + "created_at":"2017-11-08T15:54:14.372+01:00", + "updated_at":"2017-11-08T15:54:14.372+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369263, + "value":"Yes", + "question_id":12965, + "created_at":"2017-11-10T15:41:13.384+01:00", + "updated_at":"2017-11-10T15:41:13.384+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370259, + "value":"No", + "question_id":12965, + "created_at":"2017-11-23T14:16:36.142+01:00", + "updated_at":"2017-11-23T14:16:36.142+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370803, + "value":"No", + "question_id":12965, + "created_at":"2017-11-27T09:38:30.683+01:00", + "updated_at":"2017-11-27T09:38:30.683+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371241, + "value":"No", + "question_id":12965, + "created_at":"2017-11-27T14:20:37.206+01:00", + "updated_at":"2017-11-27T14:20:37.206+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371804, + "value":"No", + "question_id":12965, + "created_at":"2017-11-28T13:20:07.029+01:00", + "updated_at":"2017-11-28T13:20:07.029+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":371878, + "value":"No", + "question_id":12965, + "created_at":"2017-11-28T15:05:54.345+01:00", + "updated_at":"2017-11-28T15:05:54.345+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372355, + "value":"Yes", + "question_id":12965, + "created_at":"2017-11-29T12:38:15.685+01:00", + "updated_at":"2017-11-29T12:38:15.685+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372674, + "value":"Yes", + "question_id":12965, + "created_at":"2017-11-29T21:54:26.594+01:00", + "updated_at":"2017-11-29T21:54:26.594+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":372821, + "value":"Yes", + "question_id":12965, + "created_at":"2017-11-30T09:15:16.608+01:00", + "updated_at":"2017-11-30T09:15:16.608+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373269, + "value":"Yes", + "question_id":12965, + "created_at":"2017-12-04T11:16:31.974+01:00", + "updated_at":"2017-12-04T11:16:31.974+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373735, + "value":"No", + "question_id":12965, + "created_at":"2017-12-04T18:02:48.600+01:00", + "updated_at":"2017-12-04T18:02:48.600+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374714, + "value":"Yes", + "question_id":12965, + "created_at":"2017-12-13T10:22:34.676+01:00", + "updated_at":"2017-12-13T10:22:34.676+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375063, + "value":"No", + "question_id":12965, + "created_at":"2017-12-14T14:23:27.609+01:00", + "updated_at":"2017-12-14T14:23:27.609+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375489, + "value":"Yes", + "question_id":12965, + "created_at":"2017-12-28T10:24:02.240+01:00", + "updated_at":"2017-12-28T10:24:02.240+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375742, + "value":"Yes", + "question_id":12965, + "created_at":"2018-01-18T15:41:09.778+01:00", + "updated_at":"2018-01-18T15:41:09.778+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":379641, + "value":"", + "question_id":12965, + "created_at":"2018-04-26T10:04:55.705+02:00", + "updated_at":"2018-04-26T10:04:55.705+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":379642, + "value":"", + "question_id":12965, + "created_at":"2018-04-26T10:04:55.715+02:00", + "updated_at":"2018-04-26T10:04:55.715+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":379643, + "value":"", + "question_id":12965, + "created_at":"2018-04-26T10:04:55.721+02:00", + "updated_at":"2018-04-26T10:04:55.721+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":379648, + "value":"", + "question_id":12965, + "created_at":"2018-04-26T10:04:55.756+02:00", + "updated_at":"2018-04-26T10:04:55.756+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":379650, + "value":"", + "question_id":12965, + "created_at":"2018-04-26T10:04:55.772+02:00", + "updated_at":"2018-04-26T10:04:55.772+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":379651, + "value":"", + "question_id":12965, + "created_at":"2018-04-26T10:04:55.778+02:00", + "updated_at":"2018-04-26T10:04:55.778+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":379653, + "value":"", + "question_id":12965, + "created_at":"2018-04-26T10:04:55.798+02:00", + "updated_at":"2018-04-26T10:04:55.798+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383949, + "value":"Yes", + "question_id":12965, + "created_at":"2017-12-05T16:01:38.172+01:00", + "updated_at":"2017-12-05T16:01:38.172+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618236, + "value":"No", + "question_id":12965, + "created_at":"2018-10-28T18:40:06.700+01:00", + "updated_at":"2018-10-28T18:40:06.700+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641565, + "value":"Yes", + "question_id":12965, + "created_at":"2018-10-30T13:59:03.578+01:00", + "updated_at":"2018-10-30T13:59:03.578+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756393, + "value":"Yes", + "question_id":12965, + "created_at":"2018-11-05T14:29:45.625+01:00", + "updated_at":"2018-11-05T14:29:45.625+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":826895, + "value":"Yes", + "question_id":12965, + "created_at":"2019-09-20T10:08:05.228+02:00", + "updated_at":"2019-09-20T10:08:05.228+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":883332, + "value":"Yes", + "question_id":12965, + "created_at":"2019-10-28T11:28:44.833+01:00", + "updated_at":"2019-10-28T11:28:44.833+01:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":1165433, + "value":"Yes", + "question_id":12965, + "created_at":"2019-11-12T20:17:50.697+01:00", + "updated_at":"2019-11-12T20:17:50.697+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":379654, + "value":"", + "question_id":12965, + "created_at":"2018-04-26T10:04:55.805+02:00", + "updated_at":"2018-04-26T10:04:55.805+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":1494272, + "value":"Yes", + "question_id":12965, + "created_at":"2021-01-14T15:01:07.237+01:00", + "updated_at":"2021-01-14T15:01:07.237+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mailing-lists", + "title":"Do you offer Listserv mailing lists?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Mailing lists", + "title_detailed":"Service for operation of electronic discussion lists.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365555, + "value":"No", + "question_id":12883, + "created_at":"2017-09-06T12:07:46.121+02:00", + "updated_at":"2017-09-06T12:07:46.121+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365667, + "value":"No", + "question_id":12883, + "created_at":"2017-09-07T15:29:53.111+02:00", + "updated_at":"2017-09-07T15:29:53.111+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365866, + "value":"No", + "question_id":12883, + "created_at":"2017-09-13T13:36:43.047+02:00", + "updated_at":"2017-09-13T13:36:43.047+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":366113, + "value":"No", + "question_id":12883, + "created_at":"2017-09-19T14:34:09.162+02:00", + "updated_at":"2017-09-19T14:34:09.162+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366288, + "value":"No", + "question_id":12883, + "created_at":"2017-09-29T13:37:45.563+02:00", + "updated_at":"2017-09-29T13:37:45.563+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366539, + "value":"No", + "question_id":12883, + "created_at":"2017-10-08T08:45:19.853+02:00", + "updated_at":"2017-10-08T08:45:19.853+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366737, + "value":"No", + "question_id":12883, + "created_at":"2017-10-10T10:45:33.982+02:00", + "updated_at":"2017-10-10T10:45:33.982+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367679, + "value":"No", + "question_id":12883, + "created_at":"2017-10-23T19:23:30.180+02:00", + "updated_at":"2017-10-23T19:23:30.180+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367865, + "value":"No", + "question_id":12883, + "created_at":"2017-10-24T12:56:34.111+02:00", + "updated_at":"2017-10-24T12:56:34.111+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368365, + "value":"No", + "question_id":12883, + "created_at":"2017-10-30T21:16:10.780+01:00", + "updated_at":"2017-10-30T21:16:10.780+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368422, + "value":"No", + "question_id":12883, + "created_at":"2017-10-31T14:14:16.759+01:00", + "updated_at":"2017-10-31T14:14:16.759+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368678, + "value":"No", + "question_id":12883, + "created_at":"2017-11-02T13:19:55.022+01:00", + "updated_at":"2017-11-02T13:19:55.022+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368891, + "value":"No", + "question_id":12883, + "created_at":"2017-11-08T15:25:56.980+01:00", + "updated_at":"2017-11-08T15:25:56.980+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369160, + "value":"No", + "question_id":12883, + "created_at":"2017-11-10T15:28:42.720+01:00", + "updated_at":"2017-11-10T15:28:42.720+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369886, + "value":"No", + "question_id":12883, + "created_at":"2017-11-21T16:15:50.464+01:00", + "updated_at":"2017-11-21T16:15:50.464+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":369860, + "value":"No", + "question_id":12883, + "created_at":"2017-11-21T15:46:08.507+01:00", + "updated_at":"2017-11-21T15:46:08.507+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370113, + "value":"No", + "question_id":12883, + "created_at":"2017-11-23T13:35:01.640+01:00", + "updated_at":"2017-11-23T13:35:01.640+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370694, + "value":"No", + "question_id":12883, + "created_at":"2017-11-27T09:28:42.693+01:00", + "updated_at":"2017-11-27T09:28:42.693+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370905, + "value":"No", + "question_id":12883, + "created_at":"2017-11-27T10:32:44.968+01:00", + "updated_at":"2017-11-27T10:32:44.968+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371096, + "value":"No", + "question_id":12883, + "created_at":"2017-11-27T13:43:39.382+01:00", + "updated_at":"2017-11-27T13:43:39.382+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371689, + "value":"No", + "question_id":12883, + "created_at":"2017-11-28T13:04:51.627+01:00", + "updated_at":"2017-11-28T13:04:51.627+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372208, + "value":"No", + "question_id":12883, + "created_at":"2017-11-29T11:55:57.516+01:00", + "updated_at":"2017-11-29T11:55:57.516+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372560, + "value":"No", + "question_id":12883, + "created_at":"2017-11-29T21:27:34.155+01:00", + "updated_at":"2017-11-29T21:27:34.155+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373630, + "value":"No", + "question_id":12883, + "created_at":"2017-12-04T17:48:25.499+01:00", + "updated_at":"2017-12-04T17:48:25.499+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":373811, + "value":"No", + "question_id":12883, + "created_at":"2017-12-05T09:40:40.022+01:00", + "updated_at":"2017-12-05T09:40:40.022+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374025, + "value":"No", + "question_id":12883, + "created_at":"2017-12-06T06:50:42.586+01:00", + "updated_at":"2017-12-06T06:50:42.586+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374213, + "value":"No", + "question_id":12883, + "created_at":"2017-12-06T10:51:55.887+01:00", + "updated_at":"2017-12-06T10:51:55.887+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374685, + "value":"No", + "question_id":12883, + "created_at":"2017-12-13T09:53:28.733+01:00", + "updated_at":"2017-12-13T09:53:28.733+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374899, + "value":"No", + "question_id":12883, + "created_at":"2017-12-14T12:43:33.213+01:00", + "updated_at":"2017-12-14T12:43:33.213+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375316, + "value":"No", + "question_id":12883, + "created_at":"2017-12-27T14:15:11.211+01:00", + "updated_at":"2017-12-27T14:15:11.211+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375989, + "value":"No", + "question_id":12883, + "created_at":"2018-02-16T09:30:13.732+01:00", + "updated_at":"2018-02-16T09:30:13.732+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":376083, + "value":"", + "question_id":12883, + "created_at":"2018-04-26T10:04:20.356+02:00", + "updated_at":"2018-04-26T10:04:20.356+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":376084, + "value":"", + "question_id":12883, + "created_at":"2018-04-26T10:04:20.437+02:00", + "updated_at":"2018-04-26T10:04:20.437+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":376085, + "value":"", + "question_id":12883, + "created_at":"2018-04-26T10:04:20.448+02:00", + "updated_at":"2018-04-26T10:04:20.448+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":376087, + "value":"", + "question_id":12883, + "created_at":"2018-04-26T10:04:20.468+02:00", + "updated_at":"2018-04-26T10:04:20.468+02:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":376088, + "value":"", + "question_id":12883, + "created_at":"2018-04-26T10:04:20.481+02:00", + "updated_at":"2018-04-26T10:04:20.481+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":376089, + "value":"", + "question_id":12883, + "created_at":"2018-04-26T10:04:20.515+02:00", + "updated_at":"2018-04-26T10:04:20.515+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":376090, + "value":"", + "question_id":12883, + "created_at":"2018-04-26T10:04:20.536+02:00", + "updated_at":"2018-04-26T10:04:20.536+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":376091, + "value":"", + "question_id":12883, + "created_at":"2018-04-26T10:04:20.547+02:00", + "updated_at":"2018-04-26T10:04:20.547+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":376092, + "value":"", + "question_id":12883, + "created_at":"2018-04-26T10:04:20.584+02:00", + "updated_at":"2018-04-26T10:04:20.584+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":376093, + "value":"", + "question_id":12883, + "created_at":"2018-04-26T10:04:20.603+02:00", + "updated_at":"2018-04-26T10:04:20.603+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383937, + "value":"No", + "question_id":12883, + "created_at":"2017-12-05T15:42:01.871+01:00", + "updated_at":"2017-12-05T15:42:01.871+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":371471, + "value":"No", + "question_id":12883, + "created_at":"2017-11-27T14:59:17.602+01:00", + "updated_at":"2017-11-27T14:59:17.602+01:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"mobile-data", + "title":"Do you offer 3G/4G data service?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"3G/4G data service", + "title_detailed":"Provision of mobile broadband and phone contracts to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365562, + "value":"Yes", + "question_id":12971, + "created_at":"2017-09-06T12:11:19.705+02:00", + "updated_at":"2017-09-06T12:11:19.705+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365873, + "value":"Yes", + "question_id":12971, + "created_at":"2017-09-13T13:39:40.361+02:00", + "updated_at":"2017-09-13T13:39:40.361+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365997, + "value":"Yes", + "question_id":12971, + "created_at":"2017-09-13T14:20:01.881+02:00", + "updated_at":"2017-09-13T14:20:01.881+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":366127, + "value":"Yes", + "question_id":12971, + "created_at":"2017-09-19T14:43:58.106+02:00", + "updated_at":"2017-09-19T14:43:58.106+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366544, + "value":"Yes", + "question_id":12971, + "created_at":"2017-10-08T08:46:14.200+02:00", + "updated_at":"2017-10-08T08:46:14.200+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367079, + "value":"No", + "question_id":12971, + "created_at":"2017-10-11T13:17:58.924+02:00", + "updated_at":"2017-10-11T13:17:58.924+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367318, + "value":"Yes", + "question_id":12971, + "created_at":"2017-10-11T20:52:55.912+02:00", + "updated_at":"2017-10-11T20:52:55.912+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367687, + "value":"Yes", + "question_id":12971, + "created_at":"2017-10-23T19:24:19.120+02:00", + "updated_at":"2017-10-23T19:24:19.120+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367877, + "value":"No", + "question_id":12971, + "created_at":"2017-10-24T13:02:03.235+02:00", + "updated_at":"2017-10-24T13:02:03.235+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368693, + "value":"Yes", + "question_id":12971, + "created_at":"2017-11-02T13:20:39.400+01:00", + "updated_at":"2017-11-02T13:20:39.400+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368852, + "value":"Yes", + "question_id":12971, + "created_at":"2017-11-08T10:57:24.970+01:00", + "updated_at":"2017-11-08T10:57:24.970+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369168, + "value":"Yes", + "question_id":12971, + "created_at":"2017-11-10T15:29:48.128+01:00", + "updated_at":"2017-11-10T15:29:48.128+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369321, + "value":"Yes", + "question_id":12971, + "created_at":"2017-11-11T20:26:45.877+01:00", + "updated_at":"2017-11-11T20:26:45.877+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370123, + "value":"Yes", + "question_id":12971, + "created_at":"2017-11-23T13:40:46.519+01:00", + "updated_at":"2017-11-23T13:40:46.519+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370702, + "value":"Planned", + "question_id":12971, + "created_at":"2017-11-27T09:29:32.880+01:00", + "updated_at":"2017-11-27T09:29:32.880+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370913, + "value":"No", + "question_id":12971, + "created_at":"2017-11-27T10:34:13.203+01:00", + "updated_at":"2017-11-27T10:34:13.203+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371104, + "value":"Yes", + "question_id":12971, + "created_at":"2017-11-27T13:44:46.328+01:00", + "updated_at":"2017-11-27T13:44:46.328+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371698, + "value":"Yes", + "question_id":12971, + "created_at":"2017-11-28T13:06:11.241+01:00", + "updated_at":"2017-11-28T13:06:11.241+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":371969, + "value":"Yes", + "question_id":12971, + "created_at":"2017-11-28T16:26:06.212+01:00", + "updated_at":"2017-11-28T16:26:06.212+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372221, + "value":"Yes", + "question_id":12971, + "created_at":"2017-11-29T12:00:13.467+01:00", + "updated_at":"2017-11-29T12:00:13.467+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372568, + "value":"Yes", + "question_id":12971, + "created_at":"2017-11-29T21:32:39.198+01:00", + "updated_at":"2017-11-29T21:32:39.198+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373280, + "value":"No", + "question_id":12971, + "created_at":"2017-12-04T11:18:25.171+01:00", + "updated_at":"2017-12-04T11:18:25.171+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":373452, + "value":"No", + "question_id":12971, + "created_at":"2017-12-04T12:38:35.667+01:00", + "updated_at":"2017-12-04T12:38:35.667+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373640, + "value":"No", + "question_id":12971, + "created_at":"2017-12-04T17:50:54.253+01:00", + "updated_at":"2017-12-04T17:50:54.253+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374231, + "value":"No", + "question_id":12971, + "created_at":"2017-12-06T11:00:42.268+01:00", + "updated_at":"2017-12-06T11:00:42.268+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374905, + "value":"Yes", + "question_id":12971, + "created_at":"2017-12-14T12:45:02.321+01:00", + "updated_at":"2017-12-14T12:45:02.321+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":374974, + "value":"No", + "question_id":12971, + "created_at":"2017-12-14T14:16:56.686+01:00", + "updated_at":"2017-12-14T14:16:56.686+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375352, + "value":"Yes", + "question_id":12971, + "created_at":"2017-12-27T14:50:29.119+01:00", + "updated_at":"2017-12-27T14:50:29.119+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375394, + "value":"Yes", + "question_id":12971, + "created_at":"2017-12-28T10:00:56.071+01:00", + "updated_at":"2017-12-28T10:00:56.071+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375796, + "value":"Yes", + "question_id":12971, + "created_at":"2018-01-22T00:45:24.383+01:00", + "updated_at":"2018-01-22T00:45:24.383+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":376433, + "value":"", + "question_id":12971, + "created_at":"2018-04-26T10:04:24.516+02:00", + "updated_at":"2018-04-26T10:04:24.516+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":376435, + "value":"", + "question_id":12971, + "created_at":"2018-04-26T10:04:24.542+02:00", + "updated_at":"2018-04-26T10:04:24.542+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":376439, + "value":"", + "question_id":12971, + "created_at":"2018-04-26T10:04:24.594+02:00", + "updated_at":"2018-04-26T10:04:24.594+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":376440, + "value":"", + "question_id":12971, + "created_at":"2018-04-26T10:04:24.609+02:00", + "updated_at":"2018-04-26T10:04:24.609+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":376441, + "value":"", + "question_id":12971, + "created_at":"2018-04-26T10:04:24.619+02:00", + "updated_at":"2018-04-26T10:04:24.619+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":376442, + "value":"", + "question_id":12971, + "created_at":"2018-04-26T10:04:24.640+02:00", + "updated_at":"2018-04-26T10:04:24.640+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":376443, + "value":"", + "question_id":12971, + "created_at":"2018-04-26T10:04:24.653+02:00", + "updated_at":"2018-04-26T10:04:24.653+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383962, + "value":"Yes", + "question_id":12971, + "created_at":"2017-12-06T13:20:17.637+01:00", + "updated_at":"2017-12-06T13:20:17.637+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618217, + "value":"Yes", + "question_id":12971, + "created_at":"2018-10-28T18:32:46.261+01:00", + "updated_at":"2018-10-28T18:32:46.261+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756378, + "value":"Yes", + "question_id":12971, + "created_at":"2018-11-05T14:04:59.933+01:00", + "updated_at":"2018-11-05T14:04:59.933+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":376444, + "value":"", + "question_id":12971, + "created_at":"2018-04-26T10:04:24.665+02:00", + "updated_at":"2018-04-26T10:04:24.665+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":1493631, + "value":"Planned", + "question_id":12971, + "created_at":"2020-12-18T14:50:02.747+01:00", + "updated_at":"2020-12-18T14:50:02.747+01:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":1501059, + "value":"Yes", + "question_id":12971, + "created_at":"2021-11-09T16:15:11.904+01:00", + "updated_at":"2021-11-09T16:15:11.904+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"multicast", + "title":"Do you offer Multicast?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Multicast", + "title_detailed":"Extension to the IP protocol which allows individual packets to be sent to multiple hosts on the Internet.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365655, + "value":"No", + "question_id":12979, + "created_at":"2017-09-06T12:20:09.211+02:00", + "updated_at":"2017-09-06T12:20:09.211+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365725, + "value":"No", + "question_id":12979, + "created_at":"2017-09-07T15:35:58.884+02:00", + "updated_at":"2017-09-07T15:35:58.884+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365938, + "value":"No", + "question_id":12979, + "created_at":"2017-09-13T13:47:11.667+02:00", + "updated_at":"2017-09-13T13:47:11.667+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366384, + "value":"No", + "question_id":12979, + "created_at":"2017-09-29T13:54:36.871+02:00", + "updated_at":"2017-09-29T13:54:36.871+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366783, + "value":"No", + "question_id":12979, + "created_at":"2017-10-10T13:23:16.599+02:00", + "updated_at":"2017-10-10T13:23:16.599+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366857, + "value":"No", + "question_id":12979, + "created_at":"2017-10-11T09:33:59.345+02:00", + "updated_at":"2017-10-11T09:33:59.345+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366964, + "value":"No", + "question_id":12979, + "created_at":"2017-10-11T10:53:02.725+02:00", + "updated_at":"2017-10-11T10:53:02.725+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367567, + "value":"Yes", + "question_id":12979, + "created_at":"2017-10-17T14:47:36.437+02:00", + "updated_at":"2017-10-17T14:47:36.437+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367775, + "value":"No", + "question_id":12979, + "created_at":"2017-10-23T19:41:10.820+02:00", + "updated_at":"2017-10-23T19:41:10.820+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367979, + "value":"No", + "question_id":12979, + "created_at":"2017-10-24T13:33:31.993+02:00", + "updated_at":"2017-10-24T13:33:31.993+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368573, + "value":"No", + "question_id":12979, + "created_at":"2017-10-31T14:43:13.554+01:00", + "updated_at":"2017-10-31T14:43:13.554+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368822, + "value":"No", + "question_id":12979, + "created_at":"2017-11-07T10:14:51.107+01:00", + "updated_at":"2017-11-07T10:14:51.107+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368954, + "value":"No", + "question_id":12979, + "created_at":"2017-11-08T15:54:18.791+01:00", + "updated_at":"2017-11-08T15:54:18.791+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369264, + "value":"Yes", + "question_id":12979, + "created_at":"2017-11-10T15:41:16.136+01:00", + "updated_at":"2017-11-10T15:41:16.136+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369810, + "value":"No", + "question_id":12979, + "created_at":"2017-11-21T13:43:56.751+01:00", + "updated_at":"2017-11-21T13:43:56.751+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":369917, + "value":"No", + "question_id":12979, + "created_at":"2017-11-21T16:53:40.130+01:00", + "updated_at":"2017-11-21T16:53:40.130+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370260, + "value":"No", + "question_id":12979, + "created_at":"2017-11-23T14:16:38.485+01:00", + "updated_at":"2017-11-23T14:16:38.485+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370804, + "value":"No", + "question_id":12979, + "created_at":"2017-11-27T09:38:32.508+01:00", + "updated_at":"2017-11-27T09:38:32.508+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371239, + "value":"No", + "question_id":12979, + "created_at":"2017-11-27T14:20:27.615+01:00", + "updated_at":"2017-11-27T14:20:27.615+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371805, + "value":"No", + "question_id":12979, + "created_at":"2017-11-28T13:20:08.940+01:00", + "updated_at":"2017-11-28T13:20:08.940+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372357, + "value":"No", + "question_id":12979, + "created_at":"2017-11-29T12:38:48.509+01:00", + "updated_at":"2017-11-29T12:38:48.509+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":372823, + "value":"No", + "question_id":12979, + "created_at":"2017-11-30T09:16:01.259+01:00", + "updated_at":"2017-11-30T09:16:01.259+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":373190, + "value":"No", + "question_id":12979, + "created_at":"2017-12-01T17:46:34.977+01:00", + "updated_at":"2017-12-01T17:46:34.977+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373736, + "value":"No", + "question_id":12979, + "created_at":"2017-12-04T18:02:57.546+01:00", + "updated_at":"2017-12-04T18:02:57.546+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374078, + "value":"No", + "question_id":12979, + "created_at":"2017-12-06T07:29:18.951+01:00", + "updated_at":"2017-12-06T07:29:18.951+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374716, + "value":"No", + "question_id":12979, + "created_at":"2017-12-13T10:22:43.096+01:00", + "updated_at":"2017-12-13T10:22:43.096+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375064, + "value":"No", + "question_id":12979, + "created_at":"2017-12-14T14:23:29.785+01:00", + "updated_at":"2017-12-14T14:23:29.785+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375490, + "value":"Yes", + "question_id":12979, + "created_at":"2017-12-28T10:24:05.412+01:00", + "updated_at":"2017-12-28T10:24:05.412+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375744, + "value":"No", + "question_id":12979, + "created_at":"2018-01-18T15:41:20.515+01:00", + "updated_at":"2018-01-18T15:41:20.515+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":379690, + "value":"", + "question_id":12979, + "created_at":"2018-04-26T10:04:56.054+02:00", + "updated_at":"2018-04-26T10:04:56.054+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":379691, + "value":"", + "question_id":12979, + "created_at":"2018-04-26T10:04:56.063+02:00", + "updated_at":"2018-04-26T10:04:56.063+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":379692, + "value":"", + "question_id":12979, + "created_at":"2018-04-26T10:04:56.068+02:00", + "updated_at":"2018-04-26T10:04:56.068+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":379694, + "value":"", + "question_id":12979, + "created_at":"2018-04-26T10:04:56.077+02:00", + "updated_at":"2018-04-26T10:04:56.077+02:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":379695, + "value":"", + "question_id":12979, + "created_at":"2018-04-26T10:04:56.083+02:00", + "updated_at":"2018-04-26T10:04:56.083+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":379696, + "value":"", + "question_id":12979, + "created_at":"2018-04-26T10:04:56.095+02:00", + "updated_at":"2018-04-26T10:04:56.095+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":379697, + "value":"", + "question_id":12979, + "created_at":"2018-04-26T10:04:56.104+02:00", + "updated_at":"2018-04-26T10:04:56.104+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":379698, + "value":"", + "question_id":12979, + "created_at":"2018-04-26T10:04:56.108+02:00", + "updated_at":"2018-04-26T10:04:56.108+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":379699, + "value":"", + "question_id":12979, + "created_at":"2018-04-26T10:04:56.114+02:00", + "updated_at":"2018-04-26T10:04:56.114+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":379700, + "value":"", + "question_id":12979, + "created_at":"2018-04-26T10:04:56.124+02:00", + "updated_at":"2018-04-26T10:04:56.124+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":379701, + "value":"", + "question_id":12979, + "created_at":"2018-04-26T10:04:56.132+02:00", + "updated_at":"2018-04-26T10:04:56.132+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":379702, + "value":"", + "question_id":12979, + "created_at":"2018-04-26T10:04:56.136+02:00", + "updated_at":"2018-04-26T10:04:56.136+02:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383980, + "value":"No", + "question_id":12979, + "created_at":"2017-12-05T16:01:42.373+01:00", + "updated_at":"2017-12-05T16:01:42.373+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":379703, + "value":"", + "question_id":12979, + "created_at":"2018-04-26T10:04:56.141+02:00", + "updated_at":"2018-04-26T10:04:56.141+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"news-service", + "title":"Do you offer Netnews service?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Netnews/USENET service", + "title_detailed":"Netnews/USENET news feed service.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365581, + "value":"No", + "question_id":12985, + "created_at":"2017-09-06T12:13:29.564+02:00", + "updated_at":"2017-09-06T12:13:29.564+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365798, + "value":"No", + "question_id":12985, + "created_at":"2017-09-07T15:51:16.017+02:00", + "updated_at":"2017-09-07T15:51:16.017+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365894, + "value":"No", + "question_id":12985, + "created_at":"2017-09-13T13:42:21.253+02:00", + "updated_at":"2017-09-13T13:42:21.253+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":366153, + "value":"No", + "question_id":12985, + "created_at":"2017-09-19T14:56:55.488+02:00", + "updated_at":"2017-09-19T14:56:55.488+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366323, + "value":"No", + "question_id":12985, + "created_at":"2017-09-29T13:44:23.905+02:00", + "updated_at":"2017-09-29T13:44:23.905+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366750, + "value":"No", + "question_id":12985, + "created_at":"2017-10-10T12:53:14.538+02:00", + "updated_at":"2017-10-10T12:53:14.538+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366927, + "value":"No", + "question_id":12985, + "created_at":"2017-10-11T10:44:15.868+02:00", + "updated_at":"2017-10-11T10:44:15.868+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367709, + "value":"No", + "question_id":12985, + "created_at":"2017-10-23T19:26:36.837+02:00", + "updated_at":"2017-10-23T19:26:36.837+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367909, + "value":"No", + "question_id":12985, + "created_at":"2017-10-24T13:12:50.844+02:00", + "updated_at":"2017-10-24T13:12:50.844+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368501, + "value":"No", + "question_id":12985, + "created_at":"2017-10-31T14:25:54.080+01:00", + "updated_at":"2017-10-31T14:25:54.080+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368724, + "value":"No", + "question_id":12985, + "created_at":"2017-11-02T13:23:35.382+01:00", + "updated_at":"2017-11-02T13:23:35.382+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368754, + "value":"No", + "question_id":12985, + "created_at":"2017-11-03T14:32:14.002+01:00", + "updated_at":"2017-11-03T14:32:14.002+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369196, + "value":"No", + "question_id":12985, + "created_at":"2017-11-10T15:33:34.030+01:00", + "updated_at":"2017-11-10T15:33:34.030+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369364, + "value":"Yes", + "question_id":12985, + "created_at":"2017-11-11T20:36:31.468+01:00", + "updated_at":"2017-11-11T20:36:31.468+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369847, + "value":"No", + "question_id":12985, + "created_at":"2017-11-21T14:58:07.319+01:00", + "updated_at":"2017-11-21T14:58:07.319+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370166, + "value":"No", + "question_id":12985, + "created_at":"2017-11-23T13:55:02.807+01:00", + "updated_at":"2017-11-23T13:55:02.807+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370733, + "value":"No", + "question_id":12985, + "created_at":"2017-11-27T09:32:28.618+01:00", + "updated_at":"2017-11-27T09:32:28.618+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370933, + "value":"No", + "question_id":12985, + "created_at":"2017-11-27T10:37:17.076+01:00", + "updated_at":"2017-11-27T10:37:17.076+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371559, + "value":"No", + "question_id":12985, + "created_at":"2017-11-27T16:37:35.719+01:00", + "updated_at":"2017-11-27T16:37:35.719+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371728, + "value":"No", + "question_id":12985, + "created_at":"2017-11-28T13:09:15.163+01:00", + "updated_at":"2017-11-28T13:09:15.163+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372264, + "value":"No", + "question_id":12985, + "created_at":"2017-11-29T12:17:48.427+01:00", + "updated_at":"2017-11-29T12:17:48.427+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372597, + "value":"No", + "question_id":12985, + "created_at":"2017-11-29T21:37:29.501+01:00", + "updated_at":"2017-11-29T21:37:29.501+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":372802, + "value":"Yes", + "question_id":12985, + "created_at":"2017-11-30T08:54:12.125+01:00", + "updated_at":"2017-11-30T08:54:12.125+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373300, + "value":"No", + "question_id":12985, + "created_at":"2017-12-04T11:22:32.607+01:00", + "updated_at":"2017-12-04T11:22:32.607+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373670, + "value":"No", + "question_id":12985, + "created_at":"2017-12-04T17:54:06.657+01:00", + "updated_at":"2017-12-04T17:54:06.657+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375005, + "value":"No", + "question_id":12985, + "created_at":"2017-12-14T14:18:58.560+01:00", + "updated_at":"2017-12-14T14:18:58.560+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375318, + "value":"No", + "question_id":12985, + "created_at":"2017-12-27T14:39:53.966+01:00", + "updated_at":"2017-12-27T14:39:53.966+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375423, + "value":"No", + "question_id":12985, + "created_at":"2017-12-28T10:07:13.708+01:00", + "updated_at":"2017-12-28T10:07:13.708+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377307, + "value":"", + "question_id":12985, + "created_at":"2018-04-26T10:04:34.520+02:00", + "updated_at":"2018-04-26T10:04:34.520+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":377308, + "value":"", + "question_id":12985, + "created_at":"2018-04-26T10:04:34.534+02:00", + "updated_at":"2018-04-26T10:04:34.534+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377309, + "value":"", + "question_id":12985, + "created_at":"2018-04-26T10:04:34.541+02:00", + "updated_at":"2018-04-26T10:04:34.541+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":377311, + "value":"", + "question_id":12985, + "created_at":"2018-04-26T10:04:34.556+02:00", + "updated_at":"2018-04-26T10:04:34.556+02:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":377312, + "value":"", + "question_id":12985, + "created_at":"2018-04-26T10:04:34.565+02:00", + "updated_at":"2018-04-26T10:04:34.565+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":377313, + "value":"", + "question_id":12985, + "created_at":"2018-04-26T10:04:34.584+02:00", + "updated_at":"2018-04-26T10:04:34.584+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":377314, + "value":"", + "question_id":12985, + "created_at":"2018-04-26T10:04:34.593+02:00", + "updated_at":"2018-04-26T10:04:34.593+02:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":377315, + "value":"", + "question_id":12985, + "created_at":"2018-04-26T10:04:34.603+02:00", + "updated_at":"2018-04-26T10:04:34.603+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377316, + "value":"", + "question_id":12985, + "created_at":"2018-04-26T10:04:34.611+02:00", + "updated_at":"2018-04-26T10:04:34.611+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":377317, + "value":"", + "question_id":12985, + "created_at":"2018-04-26T10:04:34.620+02:00", + "updated_at":"2018-04-26T10:04:34.620+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":377318, + "value":"", + "question_id":12985, + "created_at":"2018-04-26T10:04:34.636+02:00", + "updated_at":"2018-04-26T10:04:34.636+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377319, + "value":"", + "question_id":12985, + "created_at":"2018-04-26T10:04:34.648+02:00", + "updated_at":"2018-04-26T10:04:34.648+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377320, + "value":"", + "question_id":12985, + "created_at":"2018-04-26T10:04:34.659+02:00", + "updated_at":"2018-04-26T10:04:34.659+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383981, + "value":"No", + "question_id":12985, + "created_at":"2017-12-05T15:47:33.984+01:00", + "updated_at":"2017-12-05T15:47:33.984+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":1165439, + "value":"No", + "question_id":12985, + "created_at":"2019-11-12T20:25:09.998+01:00", + "updated_at":"2019-11-12T20:25:09.998+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"online-payment", + "title":"Do you offer Online payment terminal connectivity?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Online payment connectivity", + "title_detailed":"Connectivity for chip and pin payment terminals.", + "tags":[ + "identity", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365565, + "value":"No", + "question_id":12987, + "created_at":"2017-09-06T12:11:33.085+02:00", + "updated_at":"2017-09-06T12:11:33.085+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365876, + "value":"No", + "question_id":12987, + "created_at":"2017-09-13T13:40:11.593+02:00", + "updated_at":"2017-09-13T13:40:11.593+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365991, + "value":"No", + "question_id":12987, + "created_at":"2017-09-13T14:19:50.466+02:00", + "updated_at":"2017-09-13T14:19:50.466+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":366132, + "value":"No", + "question_id":12987, + "created_at":"2017-09-19T14:44:41.570+02:00", + "updated_at":"2017-09-19T14:44:41.570+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366302, + "value":"No", + "question_id":12987, + "created_at":"2017-09-29T13:40:48.345+02:00", + "updated_at":"2017-09-29T13:40:48.345+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366742, + "value":"No", + "question_id":12987, + "created_at":"2017-10-10T10:54:45.943+02:00", + "updated_at":"2017-10-10T10:54:45.943+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367690, + "value":"No", + "question_id":12987, + "created_at":"2017-10-23T19:24:39.297+02:00", + "updated_at":"2017-10-23T19:24:39.297+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367881, + "value":"No", + "question_id":12987, + "created_at":"2017-10-24T13:03:09.590+02:00", + "updated_at":"2017-10-24T13:03:09.590+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368700, + "value":"Yes", + "question_id":12987, + "created_at":"2017-11-02T13:20:54.338+01:00", + "updated_at":"2017-11-02T13:20:54.338+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368817, + "value":"No", + "question_id":12987, + "created_at":"2017-11-07T09:56:49.566+01:00", + "updated_at":"2017-11-07T09:56:49.566+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369173, + "value":"No", + "question_id":12987, + "created_at":"2017-11-10T15:30:51.542+01:00", + "updated_at":"2017-11-10T15:30:51.542+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369331, + "value":"Yes", + "question_id":12987, + "created_at":"2017-11-11T20:29:46.410+01:00", + "updated_at":"2017-11-11T20:29:46.410+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370130, + "value":"No", + "question_id":12987, + "created_at":"2017-11-23T13:47:37.245+01:00", + "updated_at":"2017-11-23T13:47:37.245+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370706, + "value":"No", + "question_id":12987, + "created_at":"2017-11-27T09:29:48.177+01:00", + "updated_at":"2017-11-27T09:29:48.177+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371229, + "value":"No", + "question_id":12987, + "created_at":"2017-11-27T14:19:42.388+01:00", + "updated_at":"2017-11-27T14:19:42.388+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371287, + "value":"No", + "question_id":12987, + "created_at":"2017-11-27T14:28:55.221+01:00", + "updated_at":"2017-11-27T14:28:55.221+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371546, + "value":"No", + "question_id":12987, + "created_at":"2017-11-27T16:34:55.642+01:00", + "updated_at":"2017-11-27T16:34:55.642+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":371987, + "value":"No", + "question_id":12987, + "created_at":"2017-11-28T16:31:27.830+01:00", + "updated_at":"2017-11-28T16:31:27.830+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372229, + "value":"No", + "question_id":12987, + "created_at":"2017-11-29T12:02:14.657+01:00", + "updated_at":"2017-11-29T12:02:14.657+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372424, + "value":"No", + "question_id":12987, + "created_at":"2017-11-29T12:56:00.861+01:00", + "updated_at":"2017-11-29T12:56:00.861+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372572, + "value":"No", + "question_id":12987, + "created_at":"2017-11-29T21:33:18.078+01:00", + "updated_at":"2017-11-29T21:33:18.078+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373644, + "value":"No", + "question_id":12987, + "created_at":"2017-12-04T17:51:15.368+01:00", + "updated_at":"2017-12-04T17:51:15.368+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374033, + "value":"Planned", + "question_id":12987, + "created_at":"2017-12-06T06:56:33.223+01:00", + "updated_at":"2017-12-06T06:56:33.223+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374236, + "value":"No", + "question_id":12987, + "created_at":"2017-12-06T11:02:15.951+01:00", + "updated_at":"2017-12-06T11:02:15.951+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374907, + "value":"No", + "question_id":12987, + "created_at":"2017-12-14T12:45:14.531+01:00", + "updated_at":"2017-12-14T12:45:14.531+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":374978, + "value":"No", + "question_id":12987, + "created_at":"2017-12-14T14:17:09.083+01:00", + "updated_at":"2017-12-14T14:17:09.083+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375356, + "value":"No", + "question_id":12987, + "created_at":"2017-12-27T14:50:49.402+01:00", + "updated_at":"2017-12-27T14:50:49.402+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375412, + "value":"No", + "question_id":12987, + "created_at":"2017-12-28T10:04:02.512+01:00", + "updated_at":"2017-12-28T10:04:02.512+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375803, + "value":"No", + "question_id":12987, + "created_at":"2018-01-22T00:46:29.771+01:00", + "updated_at":"2018-01-22T00:46:29.771+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":376611, + "value":"", + "question_id":12987, + "created_at":"2018-04-26T10:04:26.761+02:00", + "updated_at":"2018-04-26T10:04:26.761+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":376612, + "value":"", + "question_id":12987, + "created_at":"2018-04-26T10:04:26.775+02:00", + "updated_at":"2018-04-26T10:04:26.775+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":376613, + "value":"", + "question_id":12987, + "created_at":"2018-04-26T10:04:26.782+02:00", + "updated_at":"2018-04-26T10:04:26.782+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":376616, + "value":"", + "question_id":12987, + "created_at":"2018-04-26T10:04:26.806+02:00", + "updated_at":"2018-04-26T10:04:26.806+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":376617, + "value":"", + "question_id":12987, + "created_at":"2018-04-26T10:04:26.823+02:00", + "updated_at":"2018-04-26T10:04:26.823+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":376618, + "value":"", + "question_id":12987, + "created_at":"2018-04-26T10:04:26.830+02:00", + "updated_at":"2018-04-26T10:04:26.830+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":376619, + "value":"", + "question_id":12987, + "created_at":"2018-04-26T10:04:26.843+02:00", + "updated_at":"2018-04-26T10:04:26.843+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":376620, + "value":"", + "question_id":12987, + "created_at":"2018-04-26T10:04:26.850+02:00", + "updated_at":"2018-04-26T10:04:26.850+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":376621, + "value":"", + "question_id":12987, + "created_at":"2018-04-26T10:04:26.870+02:00", + "updated_at":"2018-04-26T10:04:26.870+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":376622, + "value":"", + "question_id":12987, + "created_at":"2018-04-26T10:04:26.882+02:00", + "updated_at":"2018-04-26T10:04:26.882+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383965, + "value":"No", + "question_id":12987, + "created_at":"2017-12-05T15:44:10.663+01:00", + "updated_at":"2017-12-05T15:44:10.663+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756410, + "value":"Yes", + "question_id":12987, + "created_at":"2018-11-05T14:35:01.430+01:00", + "updated_at":"2018-11-05T14:35:01.430+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":798000, + "value":"Planned", + "question_id":12987, + "created_at":"2018-11-27T19:12:51.752+01:00", + "updated_at":"2018-11-27T19:12:51.752+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":376623, + "value":"", + "question_id":12987, + "created_at":"2018-04-26T10:04:26.893+02:00", + "updated_at":"2018-04-26T10:04:26.893+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"open-lightpath-exchange", + "title":"Do you offer Open Lightpath Exchange?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Open Lightpath Exchange", + "title_detailed":"Provision of an Open Lightpath exchange for users to connect to other parties.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365567, + "value":"No", + "question_id":12991, + "created_at":"2017-09-06T12:11:41.291+02:00", + "updated_at":"2017-09-06T12:11:41.291+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365879, + "value":"No", + "question_id":12991, + "created_at":"2017-09-13T13:40:27.094+02:00", + "updated_at":"2017-09-13T13:40:27.094+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365988, + "value":"Yes", + "question_id":12991, + "created_at":"2017-09-13T14:19:43.820+02:00", + "updated_at":"2017-09-13T14:19:43.820+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366304, + "value":"No", + "question_id":12991, + "created_at":"2017-09-29T13:40:59.756+02:00", + "updated_at":"2017-09-29T13:40:59.756+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367087, + "value":"Yes", + "question_id":12991, + "created_at":"2017-10-11T13:19:38.335+02:00", + "updated_at":"2017-10-11T13:19:38.335+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367187, + "value":"Yes", + "question_id":12991, + "created_at":"2017-10-11T14:03:28.963+02:00", + "updated_at":"2017-10-11T14:03:28.963+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367692, + "value":"No", + "question_id":12991, + "created_at":"2017-10-23T19:24:48.981+02:00", + "updated_at":"2017-10-23T19:24:48.981+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368704, + "value":"Yes", + "question_id":12991, + "created_at":"2017-11-02T13:21:03.132+01:00", + "updated_at":"2017-11-02T13:21:03.132+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368854, + "value":"Yes", + "question_id":12991, + "created_at":"2017-11-08T10:57:48.666+01:00", + "updated_at":"2017-11-08T10:57:48.666+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369175, + "value":"Yes", + "question_id":12991, + "created_at":"2017-11-10T15:30:59.506+01:00", + "updated_at":"2017-11-10T15:30:59.506+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369335, + "value":"No", + "question_id":12991, + "created_at":"2017-11-11T20:30:21.168+01:00", + "updated_at":"2017-11-11T20:30:21.168+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370132, + "value":"Yes", + "question_id":12991, + "created_at":"2017-11-23T13:47:48.546+01:00", + "updated_at":"2017-11-23T13:47:48.546+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370710, + "value":"No", + "question_id":12991, + "created_at":"2017-11-27T09:30:40.105+01:00", + "updated_at":"2017-11-27T09:30:40.105+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371289, + "value":"No", + "question_id":12991, + "created_at":"2017-11-27T14:29:03.130+01:00", + "updated_at":"2017-11-27T14:29:03.130+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371704, + "value":"No", + "question_id":12991, + "created_at":"2017-11-28T13:06:35.789+01:00", + "updated_at":"2017-11-28T13:06:35.789+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371547, + "value":"Planned", + "question_id":12991, + "created_at":"2017-11-27T16:35:07.183+01:00", + "updated_at":"2017-11-27T16:35:07.183+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":371996, + "value":"Yes", + "question_id":12991, + "created_at":"2017-11-28T16:32:15.914+01:00", + "updated_at":"2017-11-28T16:32:15.914+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372232, + "value":"Yes", + "question_id":12991, + "created_at":"2017-11-29T12:02:36.184+01:00", + "updated_at":"2017-11-29T12:02:36.184+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372428, + "value":"No", + "question_id":12991, + "created_at":"2017-11-29T12:57:04.540+01:00", + "updated_at":"2017-11-29T12:57:04.540+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":372498, + "value":"No", + "question_id":12991, + "created_at":"2017-11-29T20:20:37.127+01:00", + "updated_at":"2017-11-29T20:20:37.127+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372574, + "value":"No", + "question_id":12991, + "created_at":"2017-11-29T21:33:31.402+01:00", + "updated_at":"2017-11-29T21:33:31.402+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373646, + "value":"No", + "question_id":12991, + "created_at":"2017-12-04T17:51:27.832+01:00", + "updated_at":"2017-12-04T17:51:27.832+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374029, + "value":"Planned", + "question_id":12991, + "created_at":"2017-12-06T06:56:32.645+01:00", + "updated_at":"2017-12-06T06:56:32.645+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":374980, + "value":"No", + "question_id":12991, + "created_at":"2017-12-14T14:17:14.205+01:00", + "updated_at":"2017-12-14T14:17:14.205+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375359, + "value":"Yes", + "question_id":12991, + "created_at":"2017-12-27T14:51:08.136+01:00", + "updated_at":"2017-12-27T14:51:08.136+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375399, + "value":"No", + "question_id":12991, + "created_at":"2017-12-28T10:01:21.246+01:00", + "updated_at":"2017-12-28T10:01:21.246+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375808, + "value":"No", + "question_id":12991, + "created_at":"2018-01-22T00:47:31.230+01:00", + "updated_at":"2018-01-22T00:47:31.230+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":376706, + "value":"", + "question_id":12991, + "created_at":"2018-04-26T10:04:27.819+02:00", + "updated_at":"2018-04-26T10:04:27.819+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":376708, + "value":"", + "question_id":12991, + "created_at":"2018-04-26T10:04:27.841+02:00", + "updated_at":"2018-04-26T10:04:27.841+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":376711, + "value":"", + "question_id":12991, + "created_at":"2018-04-26T10:04:27.866+02:00", + "updated_at":"2018-04-26T10:04:27.866+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":376712, + "value":"", + "question_id":12991, + "created_at":"2018-04-26T10:04:27.883+02:00", + "updated_at":"2018-04-26T10:04:27.883+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":376713, + "value":"", + "question_id":12991, + "created_at":"2018-04-26T10:04:27.891+02:00", + "updated_at":"2018-04-26T10:04:27.891+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":376714, + "value":"", + "question_id":12991, + "created_at":"2018-04-26T10:04:27.904+02:00", + "updated_at":"2018-04-26T10:04:27.904+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":376715, + "value":"", + "question_id":12991, + "created_at":"2018-04-26T10:04:27.913+02:00", + "updated_at":"2018-04-26T10:04:27.913+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":376716, + "value":"", + "question_id":12991, + "created_at":"2018-04-26T10:04:27.922+02:00", + "updated_at":"2018-04-26T10:04:27.922+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":376718, + "value":"", + "question_id":12991, + "created_at":"2018-04-26T10:04:27.952+02:00", + "updated_at":"2018-04-26T10:04:27.952+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":376719, + "value":"", + "question_id":12991, + "created_at":"2018-04-26T10:04:27.962+02:00", + "updated_at":"2018-04-26T10:04:27.962+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383967, + "value":"No", + "question_id":12991, + "created_at":"2017-12-05T15:44:24.033+01:00", + "updated_at":"2017-12-05T15:44:24.033+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756398, + "value":"Yes", + "question_id":12991, + "created_at":"2018-11-05T14:31:08.592+01:00", + "updated_at":"2018-11-05T14:31:08.592+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":1116396, + "value":"Yes", + "question_id":12991, + "created_at":"2019-11-08T11:50:37.842+01:00", + "updated_at":"2019-11-08T11:50:37.842+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":1165436, + "value":"Yes", + "question_id":12991, + "created_at":"2019-11-12T20:20:41.216+01:00", + "updated_at":"2019-11-12T20:20:41.216+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":376720, + "value":"", + "question_id":12991, + "created_at":"2018-04-26T10:04:27.969+02:00", + "updated_at":"2018-04-26T10:04:27.969+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":1470698, + "value":"Yes", + "question_id":12991, + "created_at":"2020-10-16T14:53:21.373+02:00", + "updated_at":"2020-10-16T14:53:21.373+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"pert", + "title":"Do you offer PERT?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"PERT", + "title_detailed":"Team supporting resolution of end-to-end performance problems for networked applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365640, + "value":"No", + "question_id":12995, + "created_at":"2017-09-06T12:19:11.681+02:00", + "updated_at":"2017-09-06T12:19:11.681+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365707, + "value":"No", + "question_id":12995, + "created_at":"2017-09-07T15:34:12.775+02:00", + "updated_at":"2017-09-07T15:34:12.775+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":366193, + "value":"Planned", + "question_id":12995, + "created_at":"2017-09-26T09:18:32.507+02:00", + "updated_at":"2017-09-26T09:18:32.507+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366371, + "value":"No", + "question_id":12995, + "created_at":"2017-09-29T13:52:57.032+02:00", + "updated_at":"2017-09-29T13:52:57.032+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366595, + "value":"No", + "question_id":12995, + "created_at":"2017-10-08T09:19:12.688+02:00", + "updated_at":"2017-10-08T09:19:12.688+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":366669, + "value":"No", + "question_id":12995, + "created_at":"2017-10-09T11:19:10.559+02:00", + "updated_at":"2017-10-09T11:19:10.559+02:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366876, + "value":"No", + "question_id":12995, + "created_at":"2017-10-11T09:35:26.899+02:00", + "updated_at":"2017-10-11T09:35:26.899+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367349, + "value":"Yes", + "question_id":12995, + "created_at":"2017-10-11T21:19:17.250+02:00", + "updated_at":"2017-10-11T21:19:17.250+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367501, + "value":"No", + "question_id":12995, + "created_at":"2017-10-17T12:06:51.554+02:00", + "updated_at":"2017-10-17T12:06:51.554+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367761, + "value":"No", + "question_id":12995, + "created_at":"2017-10-23T19:36:09.417+02:00", + "updated_at":"2017-10-23T19:36:09.417+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367964, + "value":"No", + "question_id":12995, + "created_at":"2017-10-24T13:29:39.972+02:00", + "updated_at":"2017-10-24T13:29:39.972+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368964, + "value":"Yes", + "question_id":12995, + "created_at":"2017-11-08T15:58:21.998+01:00", + "updated_at":"2017-11-08T15:58:21.998+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369087, + "value":"No", + "question_id":12995, + "created_at":"2017-11-10T11:16:03.013+01:00", + "updated_at":"2017-11-10T11:16:03.013+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369249, + "value":"No", + "question_id":12995, + "created_at":"2017-11-10T15:40:04.221+01:00", + "updated_at":"2017-11-10T15:40:04.221+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":369907, + "value":"Yes", + "question_id":12995, + "created_at":"2017-11-21T16:52:26.281+01:00", + "updated_at":"2017-11-21T16:52:26.281+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370239, + "value":"No", + "question_id":12995, + "created_at":"2017-11-23T14:13:02.540+01:00", + "updated_at":"2017-11-23T14:13:02.540+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370785, + "value":"No", + "question_id":12995, + "created_at":"2017-11-27T09:37:09.796+01:00", + "updated_at":"2017-11-27T09:37:09.796+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371267, + "value":"No", + "question_id":12995, + "created_at":"2017-11-27T14:22:23.271+01:00", + "updated_at":"2017-11-27T14:22:23.271+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371435, + "value":"Yes", + "question_id":12995, + "created_at":"2017-11-27T14:50:16.425+01:00", + "updated_at":"2017-11-27T14:50:16.425+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371788, + "value":"No", + "question_id":12995, + "created_at":"2017-11-28T13:19:13.833+01:00", + "updated_at":"2017-11-28T13:19:13.833+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372334, + "value":"No", + "question_id":12995, + "created_at":"2017-11-29T12:34:45.224+01:00", + "updated_at":"2017-11-29T12:34:45.224+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372657, + "value":"No", + "question_id":12995, + "created_at":"2017-11-29T21:48:14.390+01:00", + "updated_at":"2017-11-29T21:48:14.390+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373265, + "value":"No", + "question_id":12995, + "created_at":"2017-12-04T11:15:28.410+01:00", + "updated_at":"2017-12-04T11:15:28.410+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373720, + "value":"Planned", + "question_id":12995, + "created_at":"2017-12-04T18:01:08.325+01:00", + "updated_at":"2017-12-04T18:01:08.325+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375049, + "value":"No", + "question_id":12995, + "created_at":"2017-12-14T14:22:27.799+01:00", + "updated_at":"2017-12-14T14:22:27.799+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375475, + "value":"No", + "question_id":12995, + "created_at":"2017-12-28T10:20:22.741+01:00", + "updated_at":"2017-12-28T10:20:22.741+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375910, + "value":"No", + "question_id":12995, + "created_at":"2018-01-23T12:34:51.995+01:00", + "updated_at":"2018-01-23T12:34:51.995+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":378957, + "value":"", + "question_id":12995, + "created_at":"2018-04-26T10:04:49.310+02:00", + "updated_at":"2018-04-26T10:04:49.310+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":378958, + "value":"", + "question_id":12995, + "created_at":"2018-04-26T10:04:49.323+02:00", + "updated_at":"2018-04-26T10:04:49.323+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":378959, + "value":"", + "question_id":12995, + "created_at":"2018-04-26T10:04:49.330+02:00", + "updated_at":"2018-04-26T10:04:49.330+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":378961, + "value":"", + "question_id":12995, + "created_at":"2018-04-26T10:04:49.345+02:00", + "updated_at":"2018-04-26T10:04:49.345+02:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":378962, + "value":"", + "question_id":12995, + "created_at":"2018-04-26T10:04:49.355+02:00", + "updated_at":"2018-04-26T10:04:49.355+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":378963, + "value":"", + "question_id":12995, + "created_at":"2018-04-26T10:04:49.377+02:00", + "updated_at":"2018-04-26T10:04:49.377+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":378964, + "value":"", + "question_id":12995, + "created_at":"2018-04-26T10:04:49.392+02:00", + "updated_at":"2018-04-26T10:04:49.392+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":378965, + "value":"", + "question_id":12995, + "created_at":"2018-04-26T10:04:49.400+02:00", + "updated_at":"2018-04-26T10:04:49.400+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":378966, + "value":"", + "question_id":12995, + "created_at":"2018-04-26T10:04:49.410+02:00", + "updated_at":"2018-04-26T10:04:49.410+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":378967, + "value":"", + "question_id":12995, + "created_at":"2018-04-26T10:04:49.429+02:00", + "updated_at":"2018-04-26T10:04:49.429+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":378968, + "value":"", + "question_id":12995, + "created_at":"2018-04-26T10:04:49.441+02:00", + "updated_at":"2018-04-26T10:04:49.441+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":378969, + "value":"", + "question_id":12995, + "created_at":"2018-04-26T10:04:49.450+02:00", + "updated_at":"2018-04-26T10:04:49.450+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":378970, + "value":"", + "question_id":12995, + "created_at":"2018-04-26T10:04:49.460+02:00", + "updated_at":"2018-04-26T10:04:49.460+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383970, + "value":"No", + "question_id":12995, + "created_at":"2017-12-05T16:00:26.778+01:00", + "updated_at":"2017-12-05T16:00:26.778+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":1165438, + "value":"Planned", + "question_id":12995, + "created_at":"2019-11-12T20:24:03.241+01:00", + "updated_at":"2019-11-12T20:24:03.241+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":1510384, + "value":"Yes", + "question_id":12995, + "created_at":"2021-12-02T10:41:47.839+01:00", + "updated_at":"2021-12-02T10:41:47.839+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"plagarism-detection", + "title":"Do you offer Plagarism detection tool?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Plagarism detection", + "title_detailed":"Provision of software for use by teachers etc to detect plagarism.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "41":{ + "id":365872, + "value":"Yes", + "question_id":12963, + "created_at":"2017-09-13T13:39:30.337+02:00", + "updated_at":"2017-09-13T13:39:30.337+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":366000, + "value":"Yes", + "question_id":12963, + "created_at":"2017-09-13T14:20:06.439+02:00", + "updated_at":"2017-09-13T14:20:06.439+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":366125, + "value":"Yes", + "question_id":12963, + "created_at":"2017-09-19T14:43:23.778+02:00", + "updated_at":"2017-09-19T14:43:23.778+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366543, + "value":"Yes", + "question_id":12963, + "created_at":"2017-10-08T08:46:06.845+02:00", + "updated_at":"2017-10-08T08:46:06.845+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367075, + "value":"No", + "question_id":12963, + "created_at":"2017-10-11T13:17:25.544+02:00", + "updated_at":"2017-10-11T13:17:25.544+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367685, + "value":"No", + "question_id":12963, + "created_at":"2017-10-23T19:24:09.515+02:00", + "updated_at":"2017-10-23T19:24:09.515+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368689, + "value":"Yes", + "question_id":12963, + "created_at":"2017-11-02T13:20:31.012+01:00", + "updated_at":"2017-11-02T13:20:31.012+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368814, + "value":"Yes", + "question_id":12963, + "created_at":"2017-11-07T09:56:03.992+01:00", + "updated_at":"2017-11-07T09:56:03.992+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369166, + "value":"Yes", + "question_id":12963, + "created_at":"2017-11-10T15:29:39.039+01:00", + "updated_at":"2017-11-10T15:29:39.039+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369318, + "value":"Yes", + "question_id":12963, + "created_at":"2017-11-11T20:26:12.031+01:00", + "updated_at":"2017-11-11T20:26:12.031+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370139, + "value":"No", + "question_id":12963, + "created_at":"2017-11-23T13:49:19.226+01:00", + "updated_at":"2017-11-23T13:49:19.226+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370700, + "value":"Planned", + "question_id":12963, + "created_at":"2017-11-27T09:29:24.192+01:00", + "updated_at":"2017-11-27T09:29:24.192+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370911, + "value":"Yes", + "question_id":12963, + "created_at":"2017-11-27T10:33:53.438+01:00", + "updated_at":"2017-11-27T10:33:53.438+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371102, + "value":"No", + "question_id":12963, + "created_at":"2017-11-27T13:44:33.061+01:00", + "updated_at":"2017-11-27T13:44:33.061+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371541, + "value":"No", + "question_id":12963, + "created_at":"2017-11-27T16:33:56.583+01:00", + "updated_at":"2017-11-27T16:33:56.583+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371712, + "value":"No", + "question_id":12963, + "created_at":"2017-11-28T13:07:08.712+01:00", + "updated_at":"2017-11-28T13:07:08.712+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":371858, + "value":"Yes", + "question_id":12963, + "created_at":"2017-11-28T14:52:52.518+01:00", + "updated_at":"2017-11-28T14:52:52.518+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372218, + "value":"Yes", + "question_id":12963, + "created_at":"2017-11-29T11:58:58.835+01:00", + "updated_at":"2017-11-29T11:58:58.835+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372566, + "value":"Yes", + "question_id":12963, + "created_at":"2017-11-29T21:32:13.899+01:00", + "updated_at":"2017-11-29T21:32:13.899+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372737, + "value":"No", + "question_id":12963, + "created_at":"2017-11-30T08:26:20.563+01:00", + "updated_at":"2017-11-30T08:26:20.563+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373638, + "value":"Yes", + "question_id":12963, + "created_at":"2017-12-04T17:50:33.765+01:00", + "updated_at":"2017-12-04T17:50:33.765+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374028, + "value":"Yes", + "question_id":12963, + "created_at":"2017-12-06T06:56:32.494+01:00", + "updated_at":"2017-12-06T06:56:32.494+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374228, + "value":"Yes", + "question_id":12963, + "created_at":"2017-12-06T10:59:42.302+01:00", + "updated_at":"2017-12-06T10:59:42.302+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374903, + "value":"Yes", + "question_id":12963, + "created_at":"2017-12-14T12:44:52.721+01:00", + "updated_at":"2017-12-14T12:44:52.721+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":374973, + "value":"Yes", + "question_id":12963, + "created_at":"2017-12-14T14:16:46.790+01:00", + "updated_at":"2017-12-14T14:16:46.790+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375348, + "value":"Yes", + "question_id":12963, + "created_at":"2017-12-27T14:48:57.874+01:00", + "updated_at":"2017-12-27T14:48:57.874+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375393, + "value":"Yes", + "question_id":12963, + "created_at":"2017-12-28T10:00:48.125+01:00", + "updated_at":"2017-12-28T10:00:48.125+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375793, + "value":"Yes", + "question_id":12963, + "created_at":"2018-01-22T00:44:40.180+01:00", + "updated_at":"2018-01-22T00:44:40.180+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":376346, + "value":"", + "question_id":12963, + "created_at":"2018-04-26T10:04:23.423+02:00", + "updated_at":"2018-04-26T10:04:23.423+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":376349, + "value":"", + "question_id":12963, + "created_at":"2018-04-26T10:04:23.453+02:00", + "updated_at":"2018-04-26T10:04:23.453+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":376353, + "value":"", + "question_id":12963, + "created_at":"2018-04-26T10:04:23.500+02:00", + "updated_at":"2018-04-26T10:04:23.500+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":376355, + "value":"", + "question_id":12963, + "created_at":"2018-04-26T10:04:23.521+02:00", + "updated_at":"2018-04-26T10:04:23.521+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":376357, + "value":"", + "question_id":12963, + "created_at":"2018-04-26T10:04:23.555+02:00", + "updated_at":"2018-04-26T10:04:23.555+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383958, + "value":"Yes", + "question_id":12963, + "created_at":"2017-12-06T13:19:16.769+01:00", + "updated_at":"2017-12-06T13:19:16.769+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618218, + "value":"Yes", + "question_id":12963, + "created_at":"2018-10-28T18:33:01.636+01:00", + "updated_at":"2018-10-28T18:33:01.636+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641552, + "value":"Yes", + "question_id":12963, + "created_at":"2018-10-30T13:52:41.707+01:00", + "updated_at":"2018-10-30T13:52:41.707+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756375, + "value":"Yes", + "question_id":12963, + "created_at":"2018-11-05T14:04:19.025+01:00", + "updated_at":"2018-11-05T14:04:19.025+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":774390, + "value":"Yes", + "question_id":12963, + "created_at":"2018-11-15T12:45:20.116+01:00", + "updated_at":"2018-11-15T12:45:20.116+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":883330, + "value":"Yes", + "question_id":12963, + "created_at":"2019-10-28T11:26:12.687+01:00", + "updated_at":"2019-10-28T11:26:12.687+01:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "48":{ + "id":1131003, + "value":"Yes", + "question_id":12963, + "created_at":"2019-11-08T19:33:58.639+01:00", + "updated_at":"2019-11-08T19:33:58.639+01:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":371479, + "value":"Yes", + "question_id":12963, + "created_at":"2017-11-27T15:00:22.191+01:00", + "updated_at":"2017-11-27T15:00:22.191+01:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":1470692, + "value":"Yes", + "question_id":12963, + "created_at":"2020-10-16T13:56:53.031+02:00", + "updated_at":"2020-10-16T13:56:53.031+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":1493607, + "value":"Planned", + "question_id":12963, + "created_at":"2020-12-18T14:40:54.426+01:00", + "updated_at":"2020-12-18T14:40:54.426+01:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"point-to-point-circuit-vpn", + "title":"Do you offer LAN extension/virtual network?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Virtual circuit/VPN", + "title_detailed":"Virtual point to point circuits or VPNs delivered as a service to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365619, + "value":"No", + "question_id":12889, + "created_at":"2017-09-06T12:17:56.624+02:00", + "updated_at":"2017-09-06T12:17:56.624+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365677, + "value":"Yes", + "question_id":12889, + "created_at":"2017-09-07T15:32:09.239+02:00", + "updated_at":"2017-09-07T15:32:09.239+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365911, + "value":"No", + "question_id":12889, + "created_at":"2017-09-13T13:45:07.783+02:00", + "updated_at":"2017-09-13T13:45:07.783+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366354, + "value":"No", + "question_id":12889, + "created_at":"2017-09-29T13:51:35.997+02:00", + "updated_at":"2017-09-29T13:51:35.997+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366897, + "value":"Yes", + "question_id":12889, + "created_at":"2017-10-11T09:37:09.235+02:00", + "updated_at":"2017-10-11T09:37:09.235+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366950, + "value":"Yes", + "question_id":12889, + "created_at":"2017-10-11T10:50:31.844+02:00", + "updated_at":"2017-10-11T10:50:31.844+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367248, + "value":"No", + "question_id":12889, + "created_at":"2017-10-11T14:18:33.221+02:00", + "updated_at":"2017-10-11T14:18:33.221+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367340, + "value":"Yes", + "question_id":12889, + "created_at":"2017-10-11T21:15:53.262+02:00", + "updated_at":"2017-10-11T21:15:53.262+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367744, + "value":"Yes", + "question_id":12889, + "created_at":"2017-10-23T19:33:01.245+02:00", + "updated_at":"2017-10-23T19:33:01.245+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367946, + "value":"No", + "question_id":12889, + "created_at":"2017-10-24T13:25:02.527+02:00", + "updated_at":"2017-10-24T13:25:02.527+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":368186, + "value":"No", + "question_id":12889, + "created_at":"2017-10-30T09:26:26.582+01:00", + "updated_at":"2017-10-30T09:26:26.582+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368922, + "value":"Yes", + "question_id":12889, + "created_at":"2017-11-08T15:43:20.576+01:00", + "updated_at":"2017-11-08T15:43:20.576+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370216, + "value":"No", + "question_id":12889, + "created_at":"2017-11-23T14:09:07.920+01:00", + "updated_at":"2017-11-23T14:09:07.920+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":370360, + "value":"No", + "question_id":12889, + "created_at":"2017-11-24T16:13:21.575+01:00", + "updated_at":"2017-11-24T16:13:21.575+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":370435, + "value":"No", + "question_id":12889, + "created_at":"2017-11-24T17:01:56.471+01:00", + "updated_at":"2017-11-24T17:01:56.471+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370767, + "value":"No", + "question_id":12889, + "created_at":"2017-11-27T09:36:04.200+01:00", + "updated_at":"2017-11-27T09:36:04.200+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371143, + "value":"No", + "question_id":12889, + "created_at":"2017-11-27T14:02:07.658+01:00", + "updated_at":"2017-11-27T14:02:07.658+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371583, + "value":"No", + "question_id":12889, + "created_at":"2017-11-27T16:43:16.436+01:00", + "updated_at":"2017-11-27T16:43:16.436+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371769, + "value":"No", + "question_id":12889, + "created_at":"2017-11-28T13:18:13.102+01:00", + "updated_at":"2017-11-28T13:18:13.102+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372313, + "value":"Yes", + "question_id":12889, + "created_at":"2017-11-29T12:31:06.002+01:00", + "updated_at":"2017-11-29T12:31:06.002+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":372545, + "value":"No", + "question_id":12889, + "created_at":"2017-11-29T20:30:01.475+01:00", + "updated_at":"2017-11-29T20:30:01.475+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372637, + "value":"No", + "question_id":12889, + "created_at":"2017-11-29T21:45:27.080+01:00", + "updated_at":"2017-11-29T21:45:27.080+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373702, + "value":"No", + "question_id":12889, + "created_at":"2017-12-04T17:59:09.634+01:00", + "updated_at":"2017-12-04T17:59:09.634+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374064, + "value":"No", + "question_id":12889, + "created_at":"2017-12-06T07:25:48.889+01:00", + "updated_at":"2017-12-06T07:25:48.889+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374340, + "value":"No", + "question_id":12889, + "created_at":"2017-12-06T13:12:00.320+01:00", + "updated_at":"2017-12-06T13:12:00.320+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375031, + "value":"No", + "question_id":12889, + "created_at":"2017-12-14T14:21:22.440+01:00", + "updated_at":"2017-12-14T14:21:22.440+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375461, + "value":"No", + "question_id":12889, + "created_at":"2017-12-28T10:19:34.530+01:00", + "updated_at":"2017-12-28T10:19:34.530+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375893, + "value":"Yes", + "question_id":12889, + "created_at":"2018-01-23T12:30:08.055+01:00", + "updated_at":"2018-01-23T12:30:08.055+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":378134, + "value":"", + "question_id":12889, + "created_at":"2018-04-26T10:04:41.717+02:00", + "updated_at":"2018-04-26T10:04:41.717+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":378136, + "value":"", + "question_id":12889, + "created_at":"2018-04-26T10:04:41.731+02:00", + "updated_at":"2018-04-26T10:04:41.731+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":378140, + "value":"", + "question_id":12889, + "created_at":"2018-04-26T10:04:41.760+02:00", + "updated_at":"2018-04-26T10:04:41.760+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":378141, + "value":"", + "question_id":12889, + "created_at":"2018-04-26T10:04:41.770+02:00", + "updated_at":"2018-04-26T10:04:41.770+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":378142, + "value":"", + "question_id":12889, + "created_at":"2018-04-26T10:04:41.776+02:00", + "updated_at":"2018-04-26T10:04:41.776+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":378143, + "value":"", + "question_id":12889, + "created_at":"2018-04-26T10:04:41.791+02:00", + "updated_at":"2018-04-26T10:04:41.791+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":378144, + "value":"", + "question_id":12889, + "created_at":"2018-04-26T10:04:41.796+02:00", + "updated_at":"2018-04-26T10:04:41.796+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383889, + "value":"No", + "question_id":12889, + "created_at":"2017-12-05T15:57:39.247+01:00", + "updated_at":"2017-12-05T15:57:39.247+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618241, + "value":"Yes", + "question_id":12889, + "created_at":"2018-10-28T18:44:21.904+01:00", + "updated_at":"2018-10-28T18:44:21.904+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756402, + "value":"Yes", + "question_id":12889, + "created_at":"2018-11-05T14:32:40.469+01:00", + "updated_at":"2018-11-05T14:32:40.469+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":826896, + "value":"Yes", + "question_id":12889, + "created_at":"2019-09-20T10:10:29.675+02:00", + "updated_at":"2019-09-20T10:10:29.675+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":378145, + "value":"", + "question_id":12889, + "created_at":"2018-04-26T10:04:41.804+02:00", + "updated_at":"2018-04-26T10:04:41.804+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":1482003, + "value":"Yes", + "question_id":12889, + "created_at":"2020-11-10T12:25:46.522+01:00", + "updated_at":"2020-11-10T12:25:46.522+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":1482389, + "value":"No", + "question_id":12889, + "created_at":"2020-11-11T19:10:12.921+01:00", + "updated_at":"2020-11-11T19:10:12.921+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":1510382, + "value":"Yes", + "question_id":12889, + "created_at":"2021-12-02T10:39:02.955+01:00", + "updated_at":"2021-12-02T10:39:02.955+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"procurement", + "title":"Do you offer Brokerage/procurement as a service?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Procurement/brokerage", + "title_detailed":"Procurement services, inc. negotiating agreements and framework agreements.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365641, + "value":"No", + "question_id":12997, + "created_at":"2017-09-06T12:19:14.174+02:00", + "updated_at":"2017-09-06T12:19:14.174+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365927, + "value":"Yes", + "question_id":12997, + "created_at":"2017-09-13T13:46:15.298+02:00", + "updated_at":"2017-09-13T13:46:15.298+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366372, + "value":"No", + "question_id":12997, + "created_at":"2017-09-29T13:53:02.370+02:00", + "updated_at":"2017-09-29T13:53:02.370+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366599, + "value":"Yes", + "question_id":12997, + "created_at":"2017-10-08T09:19:27.757+02:00", + "updated_at":"2017-10-08T09:19:27.757+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":366670, + "value":"No", + "question_id":12997, + "created_at":"2017-10-09T11:19:17.403+02:00", + "updated_at":"2017-10-09T11:19:17.403+02:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366775, + "value":"No", + "question_id":12997, + "created_at":"2017-10-10T13:18:18.530+02:00", + "updated_at":"2017-10-10T13:18:18.530+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366875, + "value":"Yes", + "question_id":12997, + "created_at":"2017-10-11T09:35:24.232+02:00", + "updated_at":"2017-10-11T09:35:24.232+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367550, + "value":"No", + "question_id":12997, + "created_at":"2017-10-17T14:43:21.620+02:00", + "updated_at":"2017-10-17T14:43:21.620+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367762, + "value":"No", + "question_id":12997, + "created_at":"2017-10-23T19:36:16.521+02:00", + "updated_at":"2017-10-23T19:36:16.521+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367965, + "value":"No", + "question_id":12997, + "created_at":"2017-10-24T13:29:46.723+02:00", + "updated_at":"2017-10-24T13:29:46.723+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369250, + "value":"Yes", + "question_id":12997, + "created_at":"2017-11-10T15:40:10.353+01:00", + "updated_at":"2017-11-10T15:40:10.353+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370240, + "value":"No", + "question_id":12997, + "created_at":"2017-11-23T14:13:05.475+01:00", + "updated_at":"2017-11-23T14:13:05.475+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":370398, + "value":"Yes", + "question_id":12997, + "created_at":"2017-11-24T16:42:47.691+01:00", + "updated_at":"2017-11-24T16:42:47.691+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370786, + "value":"No", + "question_id":12997, + "created_at":"2017-11-27T09:37:11.591+01:00", + "updated_at":"2017-11-27T09:37:11.591+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371265, + "value":"No", + "question_id":12997, + "created_at":"2017-11-27T14:22:16.884+01:00", + "updated_at":"2017-11-27T14:22:16.884+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371789, + "value":"No", + "question_id":12997, + "created_at":"2017-11-28T13:19:15.581+01:00", + "updated_at":"2017-11-28T13:19:15.581+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372335, + "value":"No", + "question_id":12997, + "created_at":"2017-11-29T12:34:51.020+01:00", + "updated_at":"2017-11-29T12:34:51.020+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":373187, + "value":"Yes", + "question_id":12997, + "created_at":"2017-12-01T17:41:11.934+01:00", + "updated_at":"2017-12-01T17:41:11.934+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373266, + "value":"Yes", + "question_id":12997, + "created_at":"2017-12-04T11:15:32.448+01:00", + "updated_at":"2017-12-04T11:15:32.448+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373721, + "value":"No", + "question_id":12997, + "created_at":"2017-12-04T18:01:15.365+01:00", + "updated_at":"2017-12-04T18:01:15.365+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375050, + "value":"No", + "question_id":12997, + "created_at":"2017-12-14T14:22:29.895+01:00", + "updated_at":"2017-12-14T14:22:29.895+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375476, + "value":"Yes", + "question_id":12997, + "created_at":"2017-12-28T10:20:25.191+01:00", + "updated_at":"2017-12-28T10:20:25.191+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375911, + "value":"No", + "question_id":12997, + "created_at":"2018-01-23T12:35:08.286+01:00", + "updated_at":"2018-01-23T12:35:08.286+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":379006, + "value":"", + "question_id":12997, + "created_at":"2018-04-26T10:04:49.793+02:00", + "updated_at":"2018-04-26T10:04:49.793+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":379008, + "value":"", + "question_id":12997, + "created_at":"2018-04-26T10:04:49.815+02:00", + "updated_at":"2018-04-26T10:04:49.815+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":379010, + "value":"", + "question_id":12997, + "created_at":"2018-04-26T10:04:49.829+02:00", + "updated_at":"2018-04-26T10:04:49.829+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":379011, + "value":"", + "question_id":12997, + "created_at":"2018-04-26T10:04:49.837+02:00", + "updated_at":"2018-04-26T10:04:49.837+02:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":379012, + "value":"", + "question_id":12997, + "created_at":"2018-04-26T10:04:49.845+02:00", + "updated_at":"2018-04-26T10:04:49.845+02:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":379013, + "value":"", + "question_id":12997, + "created_at":"2018-04-26T10:04:49.855+02:00", + "updated_at":"2018-04-26T10:04:49.855+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":379014, + "value":"", + "question_id":12997, + "created_at":"2018-04-26T10:04:49.869+02:00", + "updated_at":"2018-04-26T10:04:49.869+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":379015, + "value":"", + "question_id":12997, + "created_at":"2018-04-26T10:04:49.875+02:00", + "updated_at":"2018-04-26T10:04:49.875+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":379016, + "value":"", + "question_id":12997, + "created_at":"2018-04-26T10:04:49.882+02:00", + "updated_at":"2018-04-26T10:04:49.882+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":379017, + "value":"", + "question_id":12997, + "created_at":"2018-04-26T10:04:49.893+02:00", + "updated_at":"2018-04-26T10:04:49.893+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":379018, + "value":"", + "question_id":12997, + "created_at":"2018-04-26T10:04:49.900+02:00", + "updated_at":"2018-04-26T10:04:49.900+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":379019, + "value":"", + "question_id":12997, + "created_at":"2018-04-26T10:04:49.910+02:00", + "updated_at":"2018-04-26T10:04:49.910+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383972, + "value":"No", + "question_id":12997, + "created_at":"2017-12-05T16:00:34.377+01:00", + "updated_at":"2017-12-05T16:00:34.377+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":963608, + "value":"Yes", + "question_id":12997, + "created_at":"2019-10-30T16:56:12.325+01:00", + "updated_at":"2019-10-30T16:56:12.325+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":1165437, + "value":"Yes", + "question_id":12997, + "created_at":"2019-11-12T20:22:38.014+01:00", + "updated_at":"2019-11-12T20:22:38.014+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":379020, + "value":"", + "question_id":12997, + "created_at":"2018-04-26T10:04:49.918+02:00", + "updated_at":"2018-04-26T10:04:49.918+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":1482004, + "value":"Yes", + "question_id":12997, + "created_at":"2020-11-10T12:27:18.780+01:00", + "updated_at":"2020-11-10T12:27:18.780+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1483386, + "value":"No", + "question_id":12997, + "created_at":"2020-11-16T13:55:30.084+01:00", + "updated_at":"2020-11-16T13:55:30.084+01:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":1506687, + "value":"Yes", + "question_id":12997, + "created_at":"2021-11-23T12:54:24.569+01:00", + "updated_at":"2021-11-23T12:54:24.569+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":1510383, + "value":"No", + "question_id":12997, + "created_at":"2021-12-02T10:40:25.316+01:00", + "updated_at":"2021-12-02T10:40:25.316+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"project-collaboration-toolkit", + "title":"Do you offer Project collaboration toolkit?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Project collaboration tools", + "title_detailed":"Packaged services for virtual project groups e.g. mailing lists, storage, web meetings, wiki.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365569, + "value":"No", + "question_id":12999, + "created_at":"2017-09-06T12:11:48.916+02:00", + "updated_at":"2017-09-06T12:11:48.916+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365880, + "value":"No", + "question_id":12999, + "created_at":"2017-09-13T13:40:29.655+02:00", + "updated_at":"2017-09-13T13:40:29.655+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365987, + "value":"No", + "question_id":12999, + "created_at":"2017-09-13T14:19:41.485+02:00", + "updated_at":"2017-09-13T14:19:41.485+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366305, + "value":"No", + "question_id":12999, + "created_at":"2017-09-29T13:41:05.334+02:00", + "updated_at":"2017-09-29T13:41:05.334+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367088, + "value":"Yes", + "question_id":12999, + "created_at":"2017-10-11T13:19:50.412+02:00", + "updated_at":"2017-10-11T13:19:50.412+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367190, + "value":"Yes", + "question_id":12999, + "created_at":"2017-10-11T14:03:50.614+02:00", + "updated_at":"2017-10-11T14:03:50.614+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367693, + "value":"No", + "question_id":12999, + "created_at":"2017-10-23T19:24:52.248+02:00", + "updated_at":"2017-10-23T19:24:52.248+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367883, + "value":"No", + "question_id":12999, + "created_at":"2017-10-24T13:04:10.622+02:00", + "updated_at":"2017-10-24T13:04:10.622+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368450, + "value":"No", + "question_id":12999, + "created_at":"2017-10-31T14:19:28.892+01:00", + "updated_at":"2017-10-31T14:19:28.892+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368706, + "value":"No", + "question_id":12999, + "created_at":"2017-11-02T13:21:07.978+01:00", + "updated_at":"2017-11-02T13:21:07.978+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368856, + "value":"Yes", + "question_id":12999, + "created_at":"2017-11-08T10:58:03.862+01:00", + "updated_at":"2017-11-08T10:58:03.862+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369176, + "value":"Yes", + "question_id":12999, + "created_at":"2017-11-10T15:31:03.389+01:00", + "updated_at":"2017-11-10T15:31:03.389+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369336, + "value":"No", + "question_id":12999, + "created_at":"2017-11-11T20:30:25.781+01:00", + "updated_at":"2017-11-11T20:30:25.781+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370133, + "value":"Yes", + "question_id":12999, + "created_at":"2017-11-23T13:47:55.234+01:00", + "updated_at":"2017-11-23T13:47:55.234+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370711, + "value":"Planned", + "question_id":12999, + "created_at":"2017-11-27T09:30:43.300+01:00", + "updated_at":"2017-11-27T09:30:43.300+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371293, + "value":"No", + "question_id":12999, + "created_at":"2017-11-27T14:29:23.383+01:00", + "updated_at":"2017-11-27T14:29:23.383+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371705, + "value":"No", + "question_id":12999, + "created_at":"2017-11-28T13:06:38.563+01:00", + "updated_at":"2017-11-28T13:06:38.563+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":372010, + "value":"Yes", + "question_id":12999, + "created_at":"2017-11-28T16:35:34.773+01:00", + "updated_at":"2017-11-28T16:35:34.773+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372234, + "value":"No", + "question_id":12999, + "created_at":"2017-11-29T12:02:52.910+01:00", + "updated_at":"2017-11-29T12:02:52.910+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":372499, + "value":"Yes", + "question_id":12999, + "created_at":"2017-11-29T20:21:05.170+01:00", + "updated_at":"2017-11-29T20:21:05.170+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372575, + "value":"No", + "question_id":12999, + "created_at":"2017-11-29T21:33:40.327+01:00", + "updated_at":"2017-11-29T21:33:40.327+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373283, + "value":"Yes", + "question_id":12999, + "created_at":"2017-12-04T11:18:44.663+01:00", + "updated_at":"2017-12-04T11:18:44.663+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":373454, + "value":"No", + "question_id":12999, + "created_at":"2017-12-04T12:38:56.416+01:00", + "updated_at":"2017-12-04T12:38:56.416+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373647, + "value":"Yes", + "question_id":12999, + "created_at":"2017-12-04T17:51:36.875+01:00", + "updated_at":"2017-12-04T17:51:36.875+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374239, + "value":"Planned", + "question_id":12999, + "created_at":"2017-12-06T11:02:54.575+01:00", + "updated_at":"2017-12-06T11:02:54.575+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374909, + "value":"No", + "question_id":12999, + "created_at":"2017-12-14T12:45:23.561+01:00", + "updated_at":"2017-12-14T12:45:23.561+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":374981, + "value":"No", + "question_id":12999, + "created_at":"2017-12-14T14:17:16.913+01:00", + "updated_at":"2017-12-14T14:17:16.913+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375360, + "value":"Yes", + "question_id":12999, + "created_at":"2017-12-27T14:51:11.915+01:00", + "updated_at":"2017-12-27T14:51:11.915+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375400, + "value":"Yes", + "question_id":12999, + "created_at":"2017-12-28T10:01:24.797+01:00", + "updated_at":"2017-12-28T10:01:24.797+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375809, + "value":"No", + "question_id":12999, + "created_at":"2018-01-22T00:47:38.113+01:00", + "updated_at":"2018-01-22T00:47:38.113+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":376756, + "value":"", + "question_id":12999, + "created_at":"2018-04-26T10:04:28.379+02:00", + "updated_at":"2018-04-26T10:04:28.379+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":376758, + "value":"", + "question_id":12999, + "created_at":"2018-04-26T10:04:28.403+02:00", + "updated_at":"2018-04-26T10:04:28.403+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":376761, + "value":"", + "question_id":12999, + "created_at":"2018-04-26T10:04:28.427+02:00", + "updated_at":"2018-04-26T10:04:28.427+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":376762, + "value":"", + "question_id":12999, + "created_at":"2018-04-26T10:04:28.444+02:00", + "updated_at":"2018-04-26T10:04:28.444+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":376763, + "value":"", + "question_id":12999, + "created_at":"2018-04-26T10:04:28.452+02:00", + "updated_at":"2018-04-26T10:04:28.452+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":376765, + "value":"", + "question_id":12999, + "created_at":"2018-04-26T10:04:28.473+02:00", + "updated_at":"2018-04-26T10:04:28.473+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":376766, + "value":"", + "question_id":12999, + "created_at":"2018-04-26T10:04:28.491+02:00", + "updated_at":"2018-04-26T10:04:28.491+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":376767, + "value":"", + "question_id":12999, + "created_at":"2018-04-26T10:04:28.502+02:00", + "updated_at":"2018-04-26T10:04:28.502+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383968, + "value":"Yes", + "question_id":12999, + "created_at":"2017-12-06T13:21:41.998+01:00", + "updated_at":"2017-12-06T13:21:41.998+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641567, + "value":"No", + "question_id":12999, + "created_at":"2018-10-30T13:59:38.791+01:00", + "updated_at":"2018-10-30T13:59:38.791+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756394, + "value":"Yes", + "question_id":12999, + "created_at":"2018-11-05T14:30:04.127+01:00", + "updated_at":"2018-11-05T14:30:04.127+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":774398, + "value":"Yes", + "question_id":12999, + "created_at":"2018-11-15T12:49:25.885+01:00", + "updated_at":"2018-11-15T12:49:25.885+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":376768, + "value":"", + "question_id":12999, + "created_at":"2018-04-26T10:04:28.512+02:00", + "updated_at":"2018-04-26T10:04:28.512+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"quality-of-service", + "title":"Do you offer Quality of Service (QoS)?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Quality of Service", + "title_detailed":"Preferential service to specific applications or classes of applications.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365642, + "value":"No", + "question_id":13001, + "created_at":"2017-09-06T12:19:17.413+02:00", + "updated_at":"2017-09-06T12:19:17.413+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365710, + "value":"No", + "question_id":13001, + "created_at":"2017-09-07T15:34:22.956+02:00", + "updated_at":"2017-09-07T15:34:22.956+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365928, + "value":"No", + "question_id":13001, + "created_at":"2017-09-13T13:46:18.822+02:00", + "updated_at":"2017-09-13T13:46:18.822+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366373, + "value":"No", + "question_id":13001, + "created_at":"2017-09-29T13:53:04.864+02:00", + "updated_at":"2017-09-29T13:53:04.864+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366601, + "value":"No", + "question_id":13001, + "created_at":"2017-10-08T09:19:35.452+02:00", + "updated_at":"2017-10-08T09:19:35.452+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":366671, + "value":"No", + "question_id":13001, + "created_at":"2017-10-09T11:19:24.359+02:00", + "updated_at":"2017-10-09T11:19:24.359+02:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366776, + "value":"No", + "question_id":13001, + "created_at":"2017-10-10T13:18:37.224+02:00", + "updated_at":"2017-10-10T13:18:37.224+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366873, + "value":"No", + "question_id":13001, + "created_at":"2017-10-11T09:35:19.147+02:00", + "updated_at":"2017-10-11T09:35:19.147+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367351, + "value":"Yes", + "question_id":13001, + "created_at":"2017-10-11T21:19:48.057+02:00", + "updated_at":"2017-10-11T21:19:48.057+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367504, + "value":"Yes", + "question_id":13001, + "created_at":"2017-10-17T12:07:23.864+02:00", + "updated_at":"2017-10-17T12:07:23.864+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367763, + "value":"No", + "question_id":13001, + "created_at":"2017-10-23T19:36:21.230+02:00", + "updated_at":"2017-10-23T19:36:21.230+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367966, + "value":"No", + "question_id":13001, + "created_at":"2017-10-24T13:30:50.761+02:00", + "updated_at":"2017-10-24T13:30:50.761+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368967, + "value":"No", + "question_id":13001, + "created_at":"2017-11-08T15:59:18.710+01:00", + "updated_at":"2017-11-08T15:59:18.710+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369088, + "value":"No", + "question_id":13001, + "created_at":"2017-11-10T11:16:12.836+01:00", + "updated_at":"2017-11-10T11:16:12.836+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369251, + "value":"Yes", + "question_id":13001, + "created_at":"2017-11-10T15:40:14.499+01:00", + "updated_at":"2017-11-10T15:40:14.499+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":369909, + "value":"No", + "question_id":13001, + "created_at":"2017-11-21T16:52:44.006+01:00", + "updated_at":"2017-11-21T16:52:44.006+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370241, + "value":"No", + "question_id":13001, + "created_at":"2017-11-23T14:13:08.514+01:00", + "updated_at":"2017-11-23T14:13:08.514+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370787, + "value":"No", + "question_id":13001, + "created_at":"2017-11-27T09:37:13.241+01:00", + "updated_at":"2017-11-27T09:37:13.241+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371263, + "value":"No", + "question_id":13001, + "created_at":"2017-11-27T14:22:11.093+01:00", + "updated_at":"2017-11-27T14:22:11.093+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371790, + "value":"No", + "question_id":13001, + "created_at":"2017-11-28T13:19:18.813+01:00", + "updated_at":"2017-11-28T13:19:18.813+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372336, + "value":"No", + "question_id":13001, + "created_at":"2017-11-29T12:34:57.426+01:00", + "updated_at":"2017-11-29T12:34:57.426+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372659, + "value":"Yes", + "question_id":13001, + "created_at":"2017-11-29T21:48:25.804+01:00", + "updated_at":"2017-11-29T21:48:25.804+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373722, + "value":"No", + "question_id":13001, + "created_at":"2017-12-04T18:01:22.421+01:00", + "updated_at":"2017-12-04T18:01:22.421+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374376, + "value":"No", + "question_id":13001, + "created_at":"2017-12-06T13:20:13.520+01:00", + "updated_at":"2017-12-06T13:20:13.520+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374700, + "value":"Yes", + "question_id":13001, + "created_at":"2017-12-13T10:18:12.314+01:00", + "updated_at":"2017-12-13T10:18:12.314+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375051, + "value":"No", + "question_id":13001, + "created_at":"2017-12-14T14:22:31.531+01:00", + "updated_at":"2017-12-14T14:22:31.531+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375480, + "value":"No", + "question_id":13001, + "created_at":"2017-12-28T10:20:37.152+01:00", + "updated_at":"2017-12-28T10:20:37.152+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375912, + "value":"No", + "question_id":13001, + "created_at":"2018-01-23T12:35:15.132+01:00", + "updated_at":"2018-01-23T12:35:15.132+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":379056, + "value":"", + "question_id":13001, + "created_at":"2018-04-26T10:04:50.248+02:00", + "updated_at":"2018-04-26T10:04:50.248+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":379057, + "value":"", + "question_id":13001, + "created_at":"2018-04-26T10:04:50.260+02:00", + "updated_at":"2018-04-26T10:04:50.260+02:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":379058, + "value":"", + "question_id":13001, + "created_at":"2018-04-26T10:04:50.267+02:00", + "updated_at":"2018-04-26T10:04:50.267+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":379059, + "value":"", + "question_id":13001, + "created_at":"2018-04-26T10:04:50.274+02:00", + "updated_at":"2018-04-26T10:04:50.274+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":379062, + "value":"", + "question_id":13001, + "created_at":"2018-04-26T10:04:50.297+02:00", + "updated_at":"2018-04-26T10:04:50.297+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":379063, + "value":"", + "question_id":13001, + "created_at":"2018-04-26T10:04:50.316+02:00", + "updated_at":"2018-04-26T10:04:50.316+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":379064, + "value":"", + "question_id":13001, + "created_at":"2018-04-26T10:04:50.331+02:00", + "updated_at":"2018-04-26T10:04:50.331+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":379065, + "value":"", + "question_id":13001, + "created_at":"2018-04-26T10:04:50.340+02:00", + "updated_at":"2018-04-26T10:04:50.340+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":379066, + "value":"", + "question_id":13001, + "created_at":"2018-04-26T10:04:50.349+02:00", + "updated_at":"2018-04-26T10:04:50.349+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":379067, + "value":"", + "question_id":13001, + "created_at":"2018-04-26T10:04:50.364+02:00", + "updated_at":"2018-04-26T10:04:50.364+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":379068, + "value":"", + "question_id":13001, + "created_at":"2018-04-26T10:04:50.376+02:00", + "updated_at":"2018-04-26T10:04:50.376+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383914, + "value":"No", + "question_id":13001, + "created_at":"2017-12-05T16:00:37.902+01:00", + "updated_at":"2017-12-05T16:00:37.902+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756407, + "value":"Yes", + "question_id":13001, + "created_at":"2018-11-05T14:34:13.388+01:00", + "updated_at":"2018-11-05T14:34:13.388+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":379069, + "value":"", + "question_id":13001, + "created_at":"2018-04-26T10:04:50.386+02:00", + "updated_at":"2018-04-26T10:04:50.386+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":1506686, + "value":"Yes", + "question_id":13001, + "created_at":"2021-11-23T12:51:45.353+01:00", + "updated_at":"2021-11-23T12:51:45.353+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"scheduling-tool", + "title":"Do you offer Scheduling tool?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Scheduling tool", + "title_detailed":"Provision of tools to users for scheduling appointments or classes.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365568, + "value":"No", + "question_id":13003, + "created_at":"2017-09-06T12:11:47.140+02:00", + "updated_at":"2017-09-06T12:11:47.140+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":366137, + "value":"Yes", + "question_id":13003, + "created_at":"2017-09-19T14:47:28.714+02:00", + "updated_at":"2017-09-19T14:47:28.714+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366306, + "value":"No", + "question_id":13003, + "created_at":"2017-09-29T13:41:08.609+02:00", + "updated_at":"2017-09-29T13:41:08.609+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366547, + "value":"Yes", + "question_id":13003, + "created_at":"2017-10-08T08:46:44.002+02:00", + "updated_at":"2017-10-08T08:46:44.002+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367090, + "value":"No", + "question_id":13003, + "created_at":"2017-10-11T13:19:55.814+02:00", + "updated_at":"2017-10-11T13:19:55.814+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367694, + "value":"No", + "question_id":13003, + "created_at":"2017-10-23T19:24:58.881+02:00", + "updated_at":"2017-10-23T19:24:58.881+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368707, + "value":"No", + "question_id":13003, + "created_at":"2017-11-02T13:21:10.432+01:00", + "updated_at":"2017-11-02T13:21:10.432+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368818, + "value":"No", + "question_id":13003, + "created_at":"2017-11-07T09:56:57.523+01:00", + "updated_at":"2017-11-07T09:56:57.523+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369177, + "value":"Planned", + "question_id":13003, + "created_at":"2017-11-10T15:31:10.469+01:00", + "updated_at":"2017-11-10T15:31:10.469+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369337, + "value":"No", + "question_id":13003, + "created_at":"2017-11-11T20:30:29.844+01:00", + "updated_at":"2017-11-11T20:30:29.844+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370135, + "value":"No", + "question_id":13003, + "created_at":"2017-11-23T13:48:44.620+01:00", + "updated_at":"2017-11-23T13:48:44.620+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370712, + "value":"No", + "question_id":13003, + "created_at":"2017-11-27T09:30:46.391+01:00", + "updated_at":"2017-11-27T09:30:46.391+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370917, + "value":"Yes", + "question_id":13003, + "created_at":"2017-11-27T10:34:49.770+01:00", + "updated_at":"2017-11-27T10:34:49.770+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371310, + "value":"No", + "question_id":13003, + "created_at":"2017-11-27T14:30:07.900+01:00", + "updated_at":"2017-11-27T14:30:07.900+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371548, + "value":"No", + "question_id":13003, + "created_at":"2017-11-27T16:35:14.679+01:00", + "updated_at":"2017-11-27T16:35:14.679+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371706, + "value":"No", + "question_id":13003, + "created_at":"2017-11-28T13:06:40.666+01:00", + "updated_at":"2017-11-28T13:06:40.666+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":372012, + "value":"Planned", + "question_id":13003, + "created_at":"2017-11-28T16:36:30.539+01:00", + "updated_at":"2017-11-28T16:36:30.539+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372235, + "value":"No", + "question_id":13003, + "created_at":"2017-11-29T12:02:56.131+01:00", + "updated_at":"2017-11-29T12:02:56.131+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372429, + "value":"No", + "question_id":13003, + "created_at":"2017-11-29T12:57:15.491+01:00", + "updated_at":"2017-11-29T12:57:15.491+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372576, + "value":"No", + "question_id":13003, + "created_at":"2017-11-29T21:33:43.631+01:00", + "updated_at":"2017-11-29T21:33:43.631+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373284, + "value":"Yes", + "question_id":13003, + "created_at":"2017-12-04T11:18:54.084+01:00", + "updated_at":"2017-12-04T11:18:54.084+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373648, + "value":"No", + "question_id":13003, + "created_at":"2017-12-04T17:51:40.553+01:00", + "updated_at":"2017-12-04T17:51:40.553+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374910, + "value":"No", + "question_id":13003, + "created_at":"2017-12-14T12:45:27.724+01:00", + "updated_at":"2017-12-14T12:45:27.724+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":374982, + "value":"No", + "question_id":13003, + "created_at":"2017-12-14T14:17:18.678+01:00", + "updated_at":"2017-12-14T14:17:18.678+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375362, + "value":"No", + "question_id":13003, + "created_at":"2017-12-27T14:51:24.881+01:00", + "updated_at":"2017-12-27T14:51:24.881+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375493, + "value":"Yes", + "question_id":13003, + "created_at":"2017-12-28T10:29:25.275+01:00", + "updated_at":"2017-12-28T10:29:25.275+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375810, + "value":"No", + "question_id":13003, + "created_at":"2018-01-22T00:47:40.878+01:00", + "updated_at":"2018-01-22T00:47:40.878+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":376804, + "value":"", + "question_id":13003, + "created_at":"2018-04-26T10:04:28.867+02:00", + "updated_at":"2018-04-26T10:04:28.867+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":376805, + "value":"", + "question_id":13003, + "created_at":"2018-04-26T10:04:28.877+02:00", + "updated_at":"2018-04-26T10:04:28.877+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":376806, + "value":"", + "question_id":13003, + "created_at":"2018-04-26T10:04:28.883+02:00", + "updated_at":"2018-04-26T10:04:28.883+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":376809, + "value":"", + "question_id":13003, + "created_at":"2018-04-26T10:04:28.902+02:00", + "updated_at":"2018-04-26T10:04:28.902+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":376810, + "value":"", + "question_id":13003, + "created_at":"2018-04-26T10:04:28.917+02:00", + "updated_at":"2018-04-26T10:04:28.917+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":376811, + "value":"", + "question_id":13003, + "created_at":"2018-04-26T10:04:28.927+02:00", + "updated_at":"2018-04-26T10:04:28.927+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":376812, + "value":"", + "question_id":13003, + "created_at":"2018-04-26T10:04:28.932+02:00", + "updated_at":"2018-04-26T10:04:28.932+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":376813, + "value":"", + "question_id":13003, + "created_at":"2018-04-26T10:04:28.940+02:00", + "updated_at":"2018-04-26T10:04:28.940+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":376814, + "value":"", + "question_id":13003, + "created_at":"2018-04-26T10:04:28.955+02:00", + "updated_at":"2018-04-26T10:04:28.955+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":376815, + "value":"", + "question_id":13003, + "created_at":"2018-04-26T10:04:28.966+02:00", + "updated_at":"2018-04-26T10:04:28.966+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383890, + "value":"No", + "question_id":13003, + "created_at":"2017-12-05T15:44:33.799+01:00", + "updated_at":"2017-12-05T15:44:33.799+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756405, + "value":"Yes", + "question_id":13003, + "created_at":"2018-11-05T14:33:37.026+01:00", + "updated_at":"2018-11-05T14:33:37.026+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":883333, + "value":"Yes", + "question_id":13003, + "created_at":"2019-10-28T11:31:31.877+01:00", + "updated_at":"2019-10-28T11:31:31.877+01:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":376816, + "value":"", + "question_id":13003, + "created_at":"2018-04-26T10:04:28.975+02:00", + "updated_at":"2018-04-26T10:04:28.975+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":1500315, + "value":"No", + "question_id":13003, + "created_at":"2021-11-04T15:28:01.409+01:00", + "updated_at":"2021-11-04T15:28:01.409+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1517906, + "value":"Planned", + "question_id":13003, + "created_at":"2022-09-29T14:31:35.835+02:00", + "updated_at":"2022-09-29T14:31:35.835+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sdn-testbed", + "title":"Do you offer SDN testbed", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"SDN testbed", + "title_detailed":"Software defined networking testbed available to users.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365643, + "value":"No", + "question_id":13007, + "created_at":"2017-09-06T12:19:19.816+02:00", + "updated_at":"2017-09-06T12:19:19.816+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365711, + "value":"No", + "question_id":13007, + "created_at":"2017-09-07T15:34:29.191+02:00", + "updated_at":"2017-09-07T15:34:29.191+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365929, + "value":"No", + "question_id":13007, + "created_at":"2017-09-13T13:46:20.629+02:00", + "updated_at":"2017-09-13T13:46:20.629+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366374, + "value":"No", + "question_id":13007, + "created_at":"2017-09-29T13:53:11.708+02:00", + "updated_at":"2017-09-29T13:53:11.708+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366602, + "value":"No", + "question_id":13007, + "created_at":"2017-10-08T09:19:40.421+02:00", + "updated_at":"2017-10-08T09:19:40.421+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366777, + "value":"No", + "question_id":13007, + "created_at":"2017-10-10T13:18:42.126+02:00", + "updated_at":"2017-10-10T13:18:42.126+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366872, + "value":"No", + "question_id":13007, + "created_at":"2017-10-11T09:35:16.516+02:00", + "updated_at":"2017-10-11T09:35:16.516+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367505, + "value":"Yes", + "question_id":13007, + "created_at":"2017-10-17T12:07:42.049+02:00", + "updated_at":"2017-10-17T12:07:42.049+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367764, + "value":"No", + "question_id":13007, + "created_at":"2017-10-23T19:40:05.284+02:00", + "updated_at":"2017-10-23T19:40:05.284+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367967, + "value":"Yes", + "question_id":13007, + "created_at":"2017-10-24T13:31:01.644+02:00", + "updated_at":"2017-10-24T13:31:01.644+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368968, + "value":"No", + "question_id":13007, + "created_at":"2017-11-08T15:59:28.450+01:00", + "updated_at":"2017-11-08T15:59:28.450+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369089, + "value":"No", + "question_id":13007, + "created_at":"2017-11-10T11:16:19.197+01:00", + "updated_at":"2017-11-10T11:16:19.197+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369252, + "value":"No", + "question_id":13007, + "created_at":"2017-11-10T15:40:18.488+01:00", + "updated_at":"2017-11-10T15:40:18.488+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":369560, + "value":"Yes", + "question_id":13007, + "created_at":"2017-11-15T17:39:35.438+01:00", + "updated_at":"2017-11-15T17:39:35.438+01:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369804, + "value":"No", + "question_id":13007, + "created_at":"2017-11-21T13:38:55.297+01:00", + "updated_at":"2017-11-21T13:38:55.297+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":369910, + "value":"No", + "question_id":13007, + "created_at":"2017-11-21T16:52:48.174+01:00", + "updated_at":"2017-11-21T16:52:48.174+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370242, + "value":"No", + "question_id":13007, + "created_at":"2017-11-23T14:13:11.191+01:00", + "updated_at":"2017-11-23T14:13:11.191+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370788, + "value":"No", + "question_id":13007, + "created_at":"2017-11-27T09:37:16.825+01:00", + "updated_at":"2017-11-27T09:37:16.825+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371159, + "value":"No", + "question_id":13007, + "created_at":"2017-11-27T14:12:33.163+01:00", + "updated_at":"2017-11-27T14:12:33.163+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371261, + "value":"No", + "question_id":13007, + "created_at":"2017-11-27T14:22:06.019+01:00", + "updated_at":"2017-11-27T14:22:06.019+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371791, + "value":"No", + "question_id":13007, + "created_at":"2017-11-28T13:19:20.945+01:00", + "updated_at":"2017-11-28T13:19:20.945+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372337, + "value":"No", + "question_id":13007, + "created_at":"2017-11-29T12:35:01.868+01:00", + "updated_at":"2017-11-29T12:35:01.868+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372660, + "value":"No", + "question_id":13007, + "created_at":"2017-11-29T21:48:31.797+01:00", + "updated_at":"2017-11-29T21:48:31.797+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372776, + "value":"No", + "question_id":13007, + "created_at":"2017-11-30T08:34:41.579+01:00", + "updated_at":"2017-11-30T08:34:41.579+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373267, + "value":"Yes", + "question_id":13007, + "created_at":"2017-12-04T11:15:41.301+01:00", + "updated_at":"2017-12-04T11:15:41.301+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373723, + "value":"No", + "question_id":13007, + "created_at":"2017-12-04T18:01:31.453+01:00", + "updated_at":"2017-12-04T18:01:31.453+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374382, + "value":"No", + "question_id":13007, + "created_at":"2017-12-06T13:23:16.486+01:00", + "updated_at":"2017-12-06T13:23:16.486+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374702, + "value":"No", + "question_id":13007, + "created_at":"2017-12-13T10:19:27.953+01:00", + "updated_at":"2017-12-13T10:19:27.953+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375052, + "value":"Yes", + "question_id":13007, + "created_at":"2017-12-14T14:22:34.605+01:00", + "updated_at":"2017-12-14T14:22:34.605+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375478, + "value":"No", + "question_id":13007, + "created_at":"2017-12-28T10:20:30.090+01:00", + "updated_at":"2017-12-28T10:20:30.090+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":379106, + "value":"", + "question_id":13007, + "created_at":"2018-04-26T10:04:50.769+02:00", + "updated_at":"2018-04-26T10:04:50.769+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":379107, + "value":"", + "question_id":13007, + "created_at":"2018-04-26T10:04:50.781+02:00", + "updated_at":"2018-04-26T10:04:50.781+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":379108, + "value":"", + "question_id":13007, + "created_at":"2018-04-26T10:04:50.788+02:00", + "updated_at":"2018-04-26T10:04:50.788+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":379110, + "value":"", + "question_id":13007, + "created_at":"2018-04-26T10:04:50.802+02:00", + "updated_at":"2018-04-26T10:04:50.802+02:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":379112, + "value":"", + "question_id":13007, + "created_at":"2018-04-26T10:04:50.866+02:00", + "updated_at":"2018-04-26T10:04:50.866+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":379113, + "value":"", + "question_id":13007, + "created_at":"2018-04-26T10:04:50.879+02:00", + "updated_at":"2018-04-26T10:04:50.879+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":379114, + "value":"", + "question_id":13007, + "created_at":"2018-04-26T10:04:50.885+02:00", + "updated_at":"2018-04-26T10:04:50.885+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":379115, + "value":"", + "question_id":13007, + "created_at":"2018-04-26T10:04:50.894+02:00", + "updated_at":"2018-04-26T10:04:50.894+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":379116, + "value":"", + "question_id":13007, + "created_at":"2018-04-26T10:04:50.914+02:00", + "updated_at":"2018-04-26T10:04:50.914+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383915, + "value":"No", + "question_id":13007, + "created_at":"2017-12-05T16:00:41.864+01:00", + "updated_at":"2017-12-05T16:00:41.864+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":379117, + "value":"", + "question_id":13007, + "created_at":"2018-04-26T10:04:50.924+02:00", + "updated_at":"2018-04-26T10:04:50.924+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":1485868, + "value":"Yes", + "question_id":13007, + "created_at":"2020-11-17T15:23:27.385+01:00", + "updated_at":"2020-11-17T15:23:27.385+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":1502662, + "value":"No", + "question_id":13007, + "created_at":"2021-11-16T00:44:33.998+01:00", + "updated_at":"2021-11-16T00:44:33.998+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"sms-messaging", + "title":"Do you offer SMS messaging service?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"SMS messaging", + "title_detailed":"Service for users to send or receive SMS message by email.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365627, + "value":"No", + "question_id":13013, + "created_at":"2017-09-06T12:18:20.297+02:00", + "updated_at":"2017-09-06T12:18:20.297+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365686, + "value":"No", + "question_id":13013, + "created_at":"2017-09-07T15:32:34.103+02:00", + "updated_at":"2017-09-07T15:32:34.103+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365915, + "value":"No", + "question_id":13013, + "created_at":"2017-09-13T13:45:27.979+02:00", + "updated_at":"2017-09-13T13:45:27.979+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366359, + "value":"No", + "question_id":13013, + "created_at":"2017-09-29T13:52:01.044+02:00", + "updated_at":"2017-09-29T13:52:01.044+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366584, + "value":"No", + "question_id":13013, + "created_at":"2017-10-08T09:18:14.459+02:00", + "updated_at":"2017-10-08T09:18:14.459+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366889, + "value":"No", + "question_id":13013, + "created_at":"2017-10-11T09:36:28.892+02:00", + "updated_at":"2017-10-11T09:36:28.892+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367255, + "value":"No", + "question_id":13013, + "created_at":"2017-10-11T14:19:22.022+02:00", + "updated_at":"2017-10-11T14:19:22.022+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367749, + "value":"No", + "question_id":13013, + "created_at":"2017-10-23T19:33:24.522+02:00", + "updated_at":"2017-10-23T19:33:24.522+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367952, + "value":"No", + "question_id":13013, + "created_at":"2017-10-24T13:26:58.183+02:00", + "updated_at":"2017-10-24T13:26:58.183+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":368193, + "value":"No", + "question_id":13013, + "created_at":"2017-10-30T09:26:49.145+01:00", + "updated_at":"2017-10-30T09:26:49.145+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369391, + "value":"No", + "question_id":13013, + "created_at":"2017-11-11T20:46:46.193+01:00", + "updated_at":"2017-11-11T20:46:46.193+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":369558, + "value":"", + "question_id":13013, + "created_at":"2017-11-15T17:38:36.978+01:00", + "updated_at":"2017-11-15T17:38:36.978+01:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369699, + "value":"No", + "question_id":13013, + "created_at":"2017-11-21T11:42:01.440+01:00", + "updated_at":"2017-11-21T11:42:01.440+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369831, + "value":"No", + "question_id":13013, + "created_at":"2017-11-21T13:48:39.563+01:00", + "updated_at":"2017-11-21T13:48:39.563+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":369903, + "value":"No", + "question_id":13013, + "created_at":"2017-11-21T16:51:42.050+01:00", + "updated_at":"2017-11-21T16:51:42.050+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370221, + "value":"No", + "question_id":13013, + "created_at":"2017-11-23T14:09:25.166+01:00", + "updated_at":"2017-11-23T14:09:25.166+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370772, + "value":"No", + "question_id":13013, + "created_at":"2017-11-27T09:36:21.360+01:00", + "updated_at":"2017-11-27T09:36:21.360+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371148, + "value":"No", + "question_id":13013, + "created_at":"2017-11-27T14:03:21.945+01:00", + "updated_at":"2017-11-27T14:03:21.945+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371306, + "value":"No", + "question_id":13013, + "created_at":"2017-11-27T14:29:55.359+01:00", + "updated_at":"2017-11-27T14:29:55.359+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371775, + "value":"No", + "question_id":13013, + "created_at":"2017-11-28T13:18:27.929+01:00", + "updated_at":"2017-11-28T13:18:27.929+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372322, + "value":"No", + "question_id":13013, + "created_at":"2017-11-29T12:33:38.742+01:00", + "updated_at":"2017-11-29T12:33:38.742+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372643, + "value":"No", + "question_id":13013, + "created_at":"2017-11-29T21:46:04.975+01:00", + "updated_at":"2017-11-29T21:46:04.975+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372759, + "value":"No", + "question_id":13013, + "created_at":"2017-11-30T08:33:24.533+01:00", + "updated_at":"2017-11-30T08:33:24.533+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373256, + "value":"Yes", + "question_id":13013, + "created_at":"2017-12-04T11:14:42.639+01:00", + "updated_at":"2017-12-04T11:14:42.639+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373707, + "value":"Yes", + "question_id":13013, + "created_at":"2017-12-04T17:59:41.957+01:00", + "updated_at":"2017-12-04T17:59:41.957+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374348, + "value":"No", + "question_id":13013, + "created_at":"2017-12-06T13:13:54.906+01:00", + "updated_at":"2017-12-06T13:13:54.906+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375465, + "value":"Yes", + "question_id":13013, + "created_at":"2017-12-28T10:19:49.568+01:00", + "updated_at":"2017-12-28T10:19:49.568+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375701, + "value":"No", + "question_id":13013, + "created_at":"2018-01-09T17:27:57.296+01:00", + "updated_at":"2018-01-09T17:27:57.296+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375902, + "value":"No", + "question_id":13013, + "created_at":"2018-01-23T12:32:47.477+01:00", + "updated_at":"2018-01-23T12:32:47.477+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":376002, + "value":"No", + "question_id":13013, + "created_at":"2018-02-16T09:41:38.952+01:00", + "updated_at":"2018-02-16T09:41:38.952+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":378372, + "value":"", + "question_id":13013, + "created_at":"2018-04-26T10:04:44.222+02:00", + "updated_at":"2018-04-26T10:04:44.222+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":378373, + "value":"", + "question_id":13013, + "created_at":"2018-04-26T10:04:44.234+02:00", + "updated_at":"2018-04-26T10:04:44.234+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":378374, + "value":"", + "question_id":13013, + "created_at":"2018-04-26T10:04:44.240+02:00", + "updated_at":"2018-04-26T10:04:44.240+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":378377, + "value":"", + "question_id":13013, + "created_at":"2018-04-26T10:04:44.261+02:00", + "updated_at":"2018-04-26T10:04:44.261+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":378378, + "value":"", + "question_id":13013, + "created_at":"2018-04-26T10:04:44.277+02:00", + "updated_at":"2018-04-26T10:04:44.277+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":378379, + "value":"", + "question_id":13013, + "created_at":"2018-04-26T10:04:44.289+02:00", + "updated_at":"2018-04-26T10:04:44.289+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":378380, + "value":"", + "question_id":13013, + "created_at":"2018-04-26T10:04:44.297+02:00", + "updated_at":"2018-04-26T10:04:44.297+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":378381, + "value":"", + "question_id":13013, + "created_at":"2018-04-26T10:04:44.314+02:00", + "updated_at":"2018-04-26T10:04:44.314+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":378382, + "value":"", + "question_id":13013, + "created_at":"2018-04-26T10:04:44.321+02:00", + "updated_at":"2018-04-26T10:04:44.321+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383957, + "value":"No", + "question_id":13013, + "created_at":"2017-12-05T15:58:05.744+01:00", + "updated_at":"2017-12-05T15:58:05.744+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756408, + "value":"Yes", + "question_id":13013, + "created_at":"2018-11-05T14:34:28.302+01:00", + "updated_at":"2018-11-05T14:34:28.302+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":378383, + "value":"", + "question_id":13013, + "created_at":"2018-04-26T10:04:44.330+02:00", + "updated_at":"2018-04-26T10:04:44.330+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":1499390, + "value":"Yes", + "question_id":13013, + "created_at":"2021-11-02T15:28:08.715+01:00", + "updated_at":"2021-11-02T15:28:08.715+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-development", + "title":"Do you offer Software development?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Software development", + "title_detailed":"Software development service for users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365626, + "value":"No", + "question_id":13009, + "created_at":"2017-09-06T12:18:16.501+02:00", + "updated_at":"2017-09-06T12:18:16.501+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365684, + "value":"Yes", + "question_id":13009, + "created_at":"2017-09-07T15:32:29.001+02:00", + "updated_at":"2017-09-07T15:32:29.001+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365914, + "value":"No", + "question_id":13009, + "created_at":"2017-09-13T13:45:26.103+02:00", + "updated_at":"2017-09-13T13:45:26.103+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366358, + "value":"No", + "question_id":13009, + "created_at":"2017-09-29T13:51:55.381+02:00", + "updated_at":"2017-09-29T13:51:55.381+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366582, + "value":"Yes", + "question_id":13009, + "created_at":"2017-10-08T09:17:42.384+02:00", + "updated_at":"2017-10-08T09:17:42.384+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366890, + "value":"No", + "question_id":13009, + "created_at":"2017-10-11T09:36:32.271+02:00", + "updated_at":"2017-10-11T09:36:32.271+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367343, + "value":"Yes", + "question_id":13009, + "created_at":"2017-10-11T21:17:36.938+02:00", + "updated_at":"2017-10-11T21:17:36.938+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367474, + "value":"No", + "question_id":13009, + "created_at":"2017-10-17T12:03:58.344+02:00", + "updated_at":"2017-10-17T12:03:58.344+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367748, + "value":"Yes", + "question_id":13009, + "created_at":"2017-10-23T19:33:19.419+02:00", + "updated_at":"2017-10-23T19:33:19.419+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367951, + "value":"Yes", + "question_id":13009, + "created_at":"2017-10-24T13:26:27.616+02:00", + "updated_at":"2017-10-24T13:26:27.616+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":368192, + "value":"No", + "question_id":13009, + "created_at":"2017-10-30T09:26:46.320+01:00", + "updated_at":"2017-10-30T09:26:46.320+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368930, + "value":"Yes", + "question_id":13009, + "created_at":"2017-11-08T15:46:51.182+01:00", + "updated_at":"2017-11-08T15:46:51.182+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370220, + "value":"No", + "question_id":13009, + "created_at":"2017-11-23T14:09:22.193+01:00", + "updated_at":"2017-11-23T14:09:22.193+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":370365, + "value":"No", + "question_id":13009, + "created_at":"2017-11-24T16:13:41.707+01:00", + "updated_at":"2017-11-24T16:13:41.707+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370771, + "value":"No", + "question_id":13009, + "created_at":"2017-11-27T09:36:18.997+01:00", + "updated_at":"2017-11-27T09:36:18.997+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370957, + "value":"No", + "question_id":13009, + "created_at":"2017-11-27T10:40:55.788+01:00", + "updated_at":"2017-11-27T10:40:55.788+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371774, + "value":"No", + "question_id":13009, + "created_at":"2017-11-28T13:18:26.049+01:00", + "updated_at":"2017-11-28T13:18:26.049+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372321, + "value":"No", + "question_id":13009, + "created_at":"2017-11-29T12:33:33.007+01:00", + "updated_at":"2017-11-29T12:33:33.007+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372642, + "value":"No", + "question_id":13009, + "created_at":"2017-11-29T21:45:56.593+01:00", + "updated_at":"2017-11-29T21:45:56.593+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":372812, + "value":"No", + "question_id":13009, + "created_at":"2017-11-30T09:01:45.586+01:00", + "updated_at":"2017-11-30T09:01:45.586+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373255, + "value":"No", + "question_id":13009, + "created_at":"2017-12-04T11:14:38.191+01:00", + "updated_at":"2017-12-04T11:14:38.191+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373706, + "value":"Yes", + "question_id":13009, + "created_at":"2017-12-04T17:59:38.666+01:00", + "updated_at":"2017-12-04T17:59:38.666+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374347, + "value":"No", + "question_id":13009, + "created_at":"2017-12-06T13:13:45.509+01:00", + "updated_at":"2017-12-06T13:13:45.509+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375035, + "value":"Yes", + "question_id":13009, + "created_at":"2017-12-14T14:21:34.143+01:00", + "updated_at":"2017-12-14T14:21:34.143+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375501, + "value":"Yes", + "question_id":13009, + "created_at":"2017-12-28T10:36:28.729+01:00", + "updated_at":"2017-12-28T10:36:28.729+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375901, + "value":"No", + "question_id":13009, + "created_at":"2018-01-23T12:32:41.872+01:00", + "updated_at":"2018-01-23T12:32:41.872+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":378322, + "value":"", + "question_id":13009, + "created_at":"2018-04-26T10:04:43.711+02:00", + "updated_at":"2018-04-26T10:04:43.711+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":378323, + "value":"", + "question_id":13009, + "created_at":"2018-04-26T10:04:43.727+02:00", + "updated_at":"2018-04-26T10:04:43.727+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":378324, + "value":"", + "question_id":13009, + "created_at":"2018-04-26T10:04:43.735+02:00", + "updated_at":"2018-04-26T10:04:43.735+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":378328, + "value":"", + "question_id":13009, + "created_at":"2018-04-26T10:04:43.775+02:00", + "updated_at":"2018-04-26T10:04:43.775+02:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":378329, + "value":"", + "question_id":13009, + "created_at":"2018-04-26T10:04:43.792+02:00", + "updated_at":"2018-04-26T10:04:43.792+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":378330, + "value":"", + "question_id":13009, + "created_at":"2018-04-26T10:04:43.807+02:00", + "updated_at":"2018-04-26T10:04:43.807+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":378331, + "value":"", + "question_id":13009, + "created_at":"2018-04-26T10:04:43.816+02:00", + "updated_at":"2018-04-26T10:04:43.816+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":378333, + "value":"", + "question_id":13009, + "created_at":"2018-04-26T10:04:43.843+02:00", + "updated_at":"2018-04-26T10:04:43.843+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":378334, + "value":"", + "question_id":13009, + "created_at":"2018-04-26T10:04:43.851+02:00", + "updated_at":"2018-04-26T10:04:43.851+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":378335, + "value":"", + "question_id":13009, + "created_at":"2018-04-26T10:04:43.861+02:00", + "updated_at":"2018-04-26T10:04:43.861+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383920, + "value":"Yes", + "question_id":13009, + "created_at":"2017-12-05T15:57:58.640+01:00", + "updated_at":"2017-12-05T15:57:58.640+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618238, + "value":"Yes", + "question_id":13009, + "created_at":"2018-10-28T18:41:36.939+01:00", + "updated_at":"2018-10-28T18:41:36.939+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":826842, + "value":"Yes", + "question_id":13009, + "created_at":"2019-09-17T09:45:14.422+02:00", + "updated_at":"2019-09-17T09:45:14.422+02:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":999966, + "value":"Yes", + "question_id":13009, + "created_at":"2019-11-03T22:52:54.174+01:00", + "updated_at":"2019-11-03T22:52:54.174+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":1470699, + "value":"Yes", + "question_id":13009, + "created_at":"2020-10-16T14:53:58.842+02:00", + "updated_at":"2020-10-16T14:53:58.842+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":1488587, + "value":"No", + "question_id":13009, + "created_at":"2020-11-27T10:22:19.236+01:00", + "updated_at":"2020-11-27T10:22:19.236+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":1510381, + "value":"Yes", + "question_id":13009, + "created_at":"2021-12-02T10:37:28.615+01:00", + "updated_at":"2021-12-02T10:37:28.615+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"software-licenses", + "title":"Do you offer Software license provision", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Software licenses", + "title_detailed":"Provision of software for organisational or institutional purchase.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365653, + "value":"Yes", + "question_id":12941, + "created_at":"2017-09-06T12:20:01.642+02:00", + "updated_at":"2017-09-06T12:20:01.642+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365936, + "value":"Yes", + "question_id":12941, + "created_at":"2017-09-13T13:47:06.501+02:00", + "updated_at":"2017-09-13T13:47:06.501+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366860, + "value":"Yes", + "question_id":12941, + "created_at":"2017-10-11T09:34:18.715+02:00", + "updated_at":"2017-10-11T09:34:18.715+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366961, + "value":"Yes", + "question_id":12941, + "created_at":"2017-10-11T10:52:47.679+02:00", + "updated_at":"2017-10-11T10:52:47.679+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367162, + "value":"Yes", + "question_id":12941, + "created_at":"2017-10-11T13:46:12.542+02:00", + "updated_at":"2017-10-11T13:46:12.542+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367521, + "value":"No", + "question_id":12941, + "created_at":"2017-10-17T12:10:51.126+02:00", + "updated_at":"2017-10-17T12:10:51.126+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":367661, + "value":"Yes", + "question_id":12941, + "created_at":"2017-10-23T12:27:14.183+02:00", + "updated_at":"2017-10-23T12:27:14.183+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367773, + "value":"Yes", + "question_id":12941, + "created_at":"2017-10-23T19:40:58.607+02:00", + "updated_at":"2017-10-23T19:40:58.607+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367977, + "value":"Yes", + "question_id":12941, + "created_at":"2017-10-24T13:33:06.252+02:00", + "updated_at":"2017-10-24T13:33:06.252+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368379, + "value":"No", + "question_id":12941, + "created_at":"2017-10-31T09:00:03.762+01:00", + "updated_at":"2017-10-31T09:00:03.762+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368571, + "value":"No", + "question_id":12941, + "created_at":"2017-10-31T14:43:01.848+01:00", + "updated_at":"2017-10-31T14:43:01.848+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368951, + "value":"No", + "question_id":12941, + "created_at":"2017-11-08T15:54:04.116+01:00", + "updated_at":"2017-11-08T15:54:04.116+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369262, + "value":"Yes", + "question_id":12941, + "created_at":"2017-11-10T15:41:09.168+01:00", + "updated_at":"2017-11-10T15:41:09.168+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369815, + "value":"Yes", + "question_id":12941, + "created_at":"2017-11-21T13:45:17.504+01:00", + "updated_at":"2017-11-21T13:45:17.504+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370258, + "value":"No", + "question_id":12941, + "created_at":"2017-11-23T14:16:33.441+01:00", + "updated_at":"2017-11-23T14:16:33.441+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370802, + "value":"No", + "question_id":12941, + "created_at":"2017-11-27T09:38:27.900+01:00", + "updated_at":"2017-11-27T09:38:27.900+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371137, + "value":"Yes", + "question_id":12941, + "created_at":"2017-11-27T13:58:00.784+01:00", + "updated_at":"2017-11-27T13:58:00.784+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371243, + "value":"Yes", + "question_id":12941, + "created_at":"2017-11-27T14:20:41.893+01:00", + "updated_at":"2017-11-27T14:20:41.893+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371803, + "value":"No", + "question_id":12941, + "created_at":"2017-11-28T13:20:00.863+01:00", + "updated_at":"2017-11-28T13:20:00.863+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372353, + "value":"Yes", + "question_id":12941, + "created_at":"2017-11-29T12:37:58.252+01:00", + "updated_at":"2017-11-29T12:37:58.252+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372676, + "value":"No", + "question_id":12941, + "created_at":"2017-11-29T21:54:39.004+01:00", + "updated_at":"2017-11-29T21:54:39.004+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373270, + "value":"Yes", + "question_id":12941, + "created_at":"2017-12-04T11:16:36.735+01:00", + "updated_at":"2017-12-04T11:16:36.735+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373734, + "value":"No", + "question_id":12941, + "created_at":"2017-12-04T18:02:38.986+01:00", + "updated_at":"2017-12-04T18:02:38.986+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374397, + "value":"Yes", + "question_id":12941, + "created_at":"2017-12-06T13:28:41.079+01:00", + "updated_at":"2017-12-06T13:28:41.079+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374929, + "value":"Yes", + "question_id":12941, + "created_at":"2017-12-14T12:49:23.395+01:00", + "updated_at":"2017-12-14T12:49:23.395+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375062, + "value":"No", + "question_id":12941, + "created_at":"2017-12-14T14:23:25.841+01:00", + "updated_at":"2017-12-14T14:23:25.841+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375488, + "value":"Yes", + "question_id":12941, + "created_at":"2017-12-28T10:23:59.694+01:00", + "updated_at":"2017-12-28T10:23:59.694+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":379596, + "value":"", + "question_id":12941, + "created_at":"2018-04-26T10:04:55.332+02:00", + "updated_at":"2018-04-26T10:04:55.332+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":379598, + "value":"", + "question_id":12941, + "created_at":"2018-04-26T10:04:55.351+02:00", + "updated_at":"2018-04-26T10:04:55.351+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":379603, + "value":"", + "question_id":12941, + "created_at":"2018-04-26T10:04:55.384+02:00", + "updated_at":"2018-04-26T10:04:55.384+02:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":379604, + "value":"", + "question_id":12941, + "created_at":"2018-04-26T10:04:55.398+02:00", + "updated_at":"2018-04-26T10:04:55.398+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":379606, + "value":"", + "question_id":12941, + "created_at":"2018-04-26T10:04:55.415+02:00", + "updated_at":"2018-04-26T10:04:55.415+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":379607, + "value":"", + "question_id":12941, + "created_at":"2018-04-26T10:04:55.436+02:00", + "updated_at":"2018-04-26T10:04:55.436+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383909, + "value":"No", + "question_id":12941, + "created_at":"2017-12-06T13:44:58.657+01:00", + "updated_at":"2017-12-06T13:44:58.657+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618228, + "value":"Yes", + "question_id":12941, + "created_at":"2018-10-28T18:35:38.829+01:00", + "updated_at":"2018-10-28T18:35:38.829+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641557, + "value":"Yes", + "question_id":12941, + "created_at":"2018-10-30T13:54:37.774+01:00", + "updated_at":"2018-10-30T13:54:37.774+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756388, + "value":"Yes", + "question_id":12941, + "created_at":"2018-11-05T14:27:43.631+01:00", + "updated_at":"2018-11-05T14:27:43.631+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":379608, + "value":"", + "question_id":12941, + "created_at":"2018-04-26T10:04:55.445+02:00", + "updated_at":"2018-04-26T10:04:55.445+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":1493632, + "value":"Planned", + "question_id":12941, + "created_at":"2020-12-18T14:51:39.696+01:00", + "updated_at":"2020-12-18T14:51:39.696+01:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":1501060, + "value":"Planned", + "question_id":12941, + "created_at":"2021-11-09T16:15:45.498+01:00", + "updated_at":"2021-11-09T16:15:45.498+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":1502659, + "value":"No", + "question_id":12941, + "created_at":"2021-11-16T00:42:14.427+01:00", + "updated_at":"2021-11-16T00:42:14.427+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1508459, + "value":"No", + "question_id":12941, + "created_at":"2021-11-25T10:28:20.619+01:00", + "updated_at":"2021-11-25T10:28:20.619+01:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":1510380, + "value":"Planned", + "question_id":12941, + "created_at":"2021-12-02T10:36:14.347+01:00", + "updated_at":"2021-12-02T10:36:14.347+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"storage-co-location", + "title":"Do you offer Housing/co-location?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Housing/co-location", + "title_detailed":"Hosting of user equipment in a managed data centre.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365644, + "value":"No", + "question_id":13011, + "created_at":"2017-09-06T12:19:22.715+02:00", + "updated_at":"2017-09-06T12:19:22.715+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365716, + "value":"No", + "question_id":13011, + "created_at":"2017-09-07T15:35:02.333+02:00", + "updated_at":"2017-09-07T15:35:02.333+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365930, + "value":"Yes", + "question_id":13011, + "created_at":"2017-09-13T13:46:23.358+02:00", + "updated_at":"2017-09-13T13:46:23.358+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366603, + "value":"Yes", + "question_id":13011, + "created_at":"2017-10-08T09:19:44.622+02:00", + "updated_at":"2017-10-08T09:19:44.622+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366871, + "value":"No", + "question_id":13011, + "created_at":"2017-10-11T09:35:13.172+02:00", + "updated_at":"2017-10-11T09:35:13.172+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367157, + "value":"No", + "question_id":13011, + "created_at":"2017-10-11T13:44:20.006+02:00", + "updated_at":"2017-10-11T13:44:20.006+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367508, + "value":"No", + "question_id":13011, + "created_at":"2017-10-17T12:08:17.962+02:00", + "updated_at":"2017-10-17T12:08:17.962+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367765, + "value":"No", + "question_id":13011, + "created_at":"2017-10-23T19:40:08.579+02:00", + "updated_at":"2017-10-23T19:40:08.579+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367968, + "value":"No", + "question_id":13011, + "created_at":"2017-10-24T13:31:10.308+02:00", + "updated_at":"2017-10-24T13:31:10.308+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368565, + "value":"Planned", + "question_id":13011, + "created_at":"2017-10-31T14:41:25.500+01:00", + "updated_at":"2017-10-31T14:41:25.500+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368969, + "value":"Yes", + "question_id":13011, + "created_at":"2017-11-08T15:59:35.654+01:00", + "updated_at":"2017-11-08T15:59:35.654+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369253, + "value":"Yes", + "question_id":13011, + "created_at":"2017-11-10T15:40:23.034+01:00", + "updated_at":"2017-11-10T15:40:23.034+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":369911, + "value":"No", + "question_id":13011, + "created_at":"2017-11-21T16:52:54.200+01:00", + "updated_at":"2017-11-21T16:52:54.200+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370243, + "value":"No", + "question_id":13011, + "created_at":"2017-11-23T14:13:14.009+01:00", + "updated_at":"2017-11-23T14:13:14.009+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370789, + "value":"No", + "question_id":13011, + "created_at":"2017-11-27T09:37:18.887+01:00", + "updated_at":"2017-11-27T09:37:18.887+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371259, + "value":"No", + "question_id":13011, + "created_at":"2017-11-27T14:22:01.775+01:00", + "updated_at":"2017-11-27T14:22:01.775+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371440, + "value":"No", + "question_id":13011, + "created_at":"2017-11-27T14:50:40.053+01:00", + "updated_at":"2017-11-27T14:50:40.053+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371792, + "value":"No", + "question_id":13011, + "created_at":"2017-11-28T13:19:23.656+01:00", + "updated_at":"2017-11-28T13:19:23.656+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":371875, + "value":"No", + "question_id":13011, + "created_at":"2017-11-28T15:03:59.269+01:00", + "updated_at":"2017-11-28T15:03:59.269+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372338, + "value":"No", + "question_id":13011, + "created_at":"2017-11-29T12:35:05.234+01:00", + "updated_at":"2017-11-29T12:35:05.234+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372661, + "value":"Yes", + "question_id":13011, + "created_at":"2017-11-29T21:48:36.418+01:00", + "updated_at":"2017-11-29T21:48:36.418+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373724, + "value":"No", + "question_id":13011, + "created_at":"2017-12-04T18:01:34.608+01:00", + "updated_at":"2017-12-04T18:01:34.608+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374070, + "value":"Planned", + "question_id":13011, + "created_at":"2017-12-06T07:27:29.014+01:00", + "updated_at":"2017-12-06T07:27:29.014+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374383, + "value":"No", + "question_id":13011, + "created_at":"2017-12-06T13:23:56.273+01:00", + "updated_at":"2017-12-06T13:23:56.273+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375053, + "value":"No", + "question_id":13011, + "created_at":"2017-12-14T14:22:37.564+01:00", + "updated_at":"2017-12-14T14:22:37.564+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375479, + "value":"No", + "question_id":13011, + "created_at":"2017-12-28T10:20:33.560+01:00", + "updated_at":"2017-12-28T10:20:33.560+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375697, + "value":"Yes", + "question_id":13011, + "created_at":"2018-01-09T17:04:41.177+01:00", + "updated_at":"2018-01-09T17:04:41.177+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375913, + "value":"No", + "question_id":13011, + "created_at":"2018-01-23T12:35:26.624+01:00", + "updated_at":"2018-01-23T12:35:26.624+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":379156, + "value":"", + "question_id":13011, + "created_at":"2018-04-26T10:04:51.242+02:00", + "updated_at":"2018-04-26T10:04:51.242+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":379157, + "value":"", + "question_id":13011, + "created_at":"2018-04-26T10:04:51.253+02:00", + "updated_at":"2018-04-26T10:04:51.253+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":379158, + "value":"", + "question_id":13011, + "created_at":"2018-04-26T10:04:51.259+02:00", + "updated_at":"2018-04-26T10:04:51.259+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":379160, + "value":"", + "question_id":13011, + "created_at":"2018-04-26T10:04:51.271+02:00", + "updated_at":"2018-04-26T10:04:51.271+02:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":379161, + "value":"", + "question_id":13011, + "created_at":"2018-04-26T10:04:51.277+02:00", + "updated_at":"2018-04-26T10:04:51.277+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":379162, + "value":"", + "question_id":13011, + "created_at":"2018-04-26T10:04:51.283+02:00", + "updated_at":"2018-04-26T10:04:51.283+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":379163, + "value":"", + "question_id":13011, + "created_at":"2018-04-26T10:04:51.298+02:00", + "updated_at":"2018-04-26T10:04:51.298+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":379164, + "value":"", + "question_id":13011, + "created_at":"2018-04-26T10:04:51.309+02:00", + "updated_at":"2018-04-26T10:04:51.309+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":379165, + "value":"", + "question_id":13011, + "created_at":"2018-04-26T10:04:51.315+02:00", + "updated_at":"2018-04-26T10:04:51.315+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":379166, + "value":"", + "question_id":13011, + "created_at":"2018-04-26T10:04:51.322+02:00", + "updated_at":"2018-04-26T10:04:51.322+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":379167, + "value":"", + "question_id":13011, + "created_at":"2018-04-26T10:04:51.335+02:00", + "updated_at":"2018-04-26T10:04:51.335+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":379168, + "value":"", + "question_id":13011, + "created_at":"2018-04-26T10:04:51.344+02:00", + "updated_at":"2018-04-26T10:04:51.344+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383976, + "value":"Yes", + "question_id":13011, + "created_at":"2017-12-06T13:42:46.199+01:00", + "updated_at":"2017-12-06T13:42:46.199+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":379169, + "value":"", + "question_id":13011, + "created_at":"2018-04-26T10:04:51.353+02:00", + "updated_at":"2018-04-26T10:04:51.353+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":1482911, + "value":"Yes", + "question_id":13011, + "created_at":"2020-11-14T16:03:13.342+01:00", + "updated_at":"2020-11-14T16:03:13.342+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"survey-tool", + "title":"Do you offer Survey/polling tool?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Survey/polling tool", + "title_detailed":"Provision of applications for creating surveys or polls.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365652, + "value":"No", + "question_id":12937, + "created_at":"2017-09-06T12:19:58.432+02:00", + "updated_at":"2017-09-06T12:19:58.432+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365935, + "value":"No", + "question_id":12937, + "created_at":"2017-09-13T13:46:58.995+02:00", + "updated_at":"2017-09-13T13:46:58.995+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366861, + "value":"No", + "question_id":12937, + "created_at":"2017-10-11T09:34:23.647+02:00", + "updated_at":"2017-10-11T09:34:23.647+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366960, + "value":"No", + "question_id":12937, + "created_at":"2017-10-11T10:52:43.346+02:00", + "updated_at":"2017-10-11T10:52:43.346+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367161, + "value":"No", + "question_id":12937, + "created_at":"2017-10-11T13:46:01.214+02:00", + "updated_at":"2017-10-11T13:46:01.214+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367772, + "value":"No", + "question_id":12937, + "created_at":"2017-10-23T19:40:54.186+02:00", + "updated_at":"2017-10-23T19:40:54.186+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367976, + "value":"No", + "question_id":12937, + "created_at":"2017-10-24T13:32:49.584+02:00", + "updated_at":"2017-10-24T13:32:49.584+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368950, + "value":"No", + "question_id":12937, + "created_at":"2017-11-08T15:53:57.567+01:00", + "updated_at":"2017-11-08T15:53:57.567+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369261, + "value":"No", + "question_id":12937, + "created_at":"2017-11-10T15:41:03.197+01:00", + "updated_at":"2017-11-10T15:41:03.197+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369717, + "value":"Yes", + "question_id":12937, + "created_at":"2017-11-21T11:52:30.548+01:00", + "updated_at":"2017-11-21T11:52:30.548+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369814, + "value":"No", + "question_id":12937, + "created_at":"2017-11-21T13:45:13.509+01:00", + "updated_at":"2017-11-21T13:45:13.509+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370257, + "value":"No", + "question_id":12937, + "created_at":"2017-11-23T14:16:30.794+01:00", + "updated_at":"2017-11-23T14:16:30.794+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":370407, + "value":"Yes", + "question_id":12937, + "created_at":"2017-11-24T16:44:46.164+01:00", + "updated_at":"2017-11-24T16:44:46.164+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371245, + "value":"No", + "question_id":12937, + "created_at":"2017-11-27T14:21:12.463+01:00", + "updated_at":"2017-11-27T14:21:12.463+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371451, + "value":"No", + "question_id":12937, + "created_at":"2017-11-27T14:52:09.459+01:00", + "updated_at":"2017-11-27T14:52:09.459+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371802, + "value":"No", + "question_id":12937, + "created_at":"2017-11-28T13:19:59.002+01:00", + "updated_at":"2017-11-28T13:19:59.002+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372351, + "value":"Yes", + "question_id":12937, + "created_at":"2017-11-29T12:37:25.250+01:00", + "updated_at":"2017-11-29T12:37:25.250+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372670, + "value":"No", + "question_id":12937, + "created_at":"2017-11-29T21:49:39.520+01:00", + "updated_at":"2017-11-29T21:49:39.520+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":373198, + "value":"No", + "question_id":12937, + "created_at":"2017-12-03T13:51:12.043+01:00", + "updated_at":"2017-12-03T13:51:12.043+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373733, + "value":"No", + "question_id":12937, + "created_at":"2017-12-04T18:02:36.164+01:00", + "updated_at":"2017-12-04T18:02:36.164+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374077, + "value":"No", + "question_id":12937, + "created_at":"2017-12-06T07:29:02.804+01:00", + "updated_at":"2017-12-06T07:29:02.804+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374712, + "value":"No", + "question_id":12937, + "created_at":"2017-12-13T10:22:23.595+01:00", + "updated_at":"2017-12-13T10:22:23.595+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375061, + "value":"No", + "question_id":12937, + "created_at":"2017-12-14T14:23:21.660+01:00", + "updated_at":"2017-12-14T14:23:21.660+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375506, + "value":"No", + "question_id":12937, + "created_at":"2017-12-28T10:37:30.773+01:00", + "updated_at":"2017-12-28T10:37:30.773+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375918, + "value":"No", + "question_id":12937, + "created_at":"2018-01-23T12:36:19.084+01:00", + "updated_at":"2018-01-23T12:36:19.084+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":379542, + "value":"", + "question_id":12937, + "created_at":"2018-04-26T10:04:54.835+02:00", + "updated_at":"2018-04-26T10:04:54.835+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":379543, + "value":"", + "question_id":12937, + "created_at":"2018-04-26T10:04:54.847+02:00", + "updated_at":"2018-04-26T10:04:54.847+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":379544, + "value":"", + "question_id":12937, + "created_at":"2018-04-26T10:04:54.854+02:00", + "updated_at":"2018-04-26T10:04:54.854+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":379546, + "value":"", + "question_id":12937, + "created_at":"2018-04-26T10:04:54.871+02:00", + "updated_at":"2018-04-26T10:04:54.871+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":379547, + "value":"", + "question_id":12937, + "created_at":"2018-04-26T10:04:54.878+02:00", + "updated_at":"2018-04-26T10:04:54.878+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":379548, + "value":"", + "question_id":12937, + "created_at":"2018-04-26T10:04:54.885+02:00", + "updated_at":"2018-04-26T10:04:54.885+02:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":379549, + "value":"", + "question_id":12937, + "created_at":"2018-04-26T10:04:54.900+02:00", + "updated_at":"2018-04-26T10:04:54.900+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":379550, + "value":"", + "question_id":12937, + "created_at":"2018-04-26T10:04:54.912+02:00", + "updated_at":"2018-04-26T10:04:54.912+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":379551, + "value":"", + "question_id":12937, + "created_at":"2018-04-26T10:04:54.919+02:00", + "updated_at":"2018-04-26T10:04:54.919+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":379552, + "value":"", + "question_id":12937, + "created_at":"2018-04-26T10:04:54.925+02:00", + "updated_at":"2018-04-26T10:04:54.925+02:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":379553, + "value":"", + "question_id":12937, + "created_at":"2018-04-26T10:04:54.951+02:00", + "updated_at":"2018-04-26T10:04:54.951+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":379554, + "value":"", + "question_id":12937, + "created_at":"2018-04-26T10:04:54.973+02:00", + "updated_at":"2018-04-26T10:04:54.973+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":379555, + "value":"", + "question_id":12937, + "created_at":"2018-04-26T10:04:54.983+02:00", + "updated_at":"2018-04-26T10:04:54.983+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":379556, + "value":"", + "question_id":12937, + "created_at":"2018-04-26T10:04:54.989+02:00", + "updated_at":"2018-04-26T10:04:54.989+02:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383894, + "value":"No", + "question_id":12937, + "created_at":"2017-12-05T16:01:29.804+01:00", + "updated_at":"2017-12-05T16:01:29.804+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":379557, + "value":"", + "question_id":12937, + "created_at":"2018-04-26T10:04:54.996+02:00", + "updated_at":"2018-04-26T10:04:54.996+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1483472, + "value":"No", + "question_id":12937, + "created_at":"2020-11-16T14:01:47.413+01:00", + "updated_at":"2020-11-16T14:01:47.413+01:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":1493640, + "value":"Planned", + "question_id":12937, + "created_at":"2020-12-18T15:05:10.230+01:00", + "updated_at":"2020-12-18T15:05:10.230+01:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"system-backup", + "title":"Do you offer Hot standby?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Hot standby", + "title_detailed":"Failover protection for primary web servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365591, + "value":"No", + "question_id":13015, + "created_at":"2017-09-06T12:14:19.932+02:00", + "updated_at":"2017-09-06T12:14:19.932+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365788, + "value":"Yes", + "question_id":13015, + "created_at":"2017-09-07T15:50:35.236+02:00", + "updated_at":"2017-09-07T15:50:35.236+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366335, + "value":"Yes", + "question_id":13015, + "created_at":"2017-09-29T13:46:39.227+02:00", + "updated_at":"2017-09-29T13:46:39.227+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366608, + "value":"Yes", + "question_id":13015, + "created_at":"2017-10-08T09:21:41.356+02:00", + "updated_at":"2017-10-08T09:21:41.356+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366757, + "value":"Yes", + "question_id":13015, + "created_at":"2017-10-10T12:56:23.847+02:00", + "updated_at":"2017-10-10T12:56:23.847+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367638, + "value":"No", + "question_id":13015, + "created_at":"2017-10-23T11:50:57.436+02:00", + "updated_at":"2017-10-23T11:50:57.436+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367718, + "value":"Yes", + "question_id":13015, + "created_at":"2017-10-23T19:27:22.946+02:00", + "updated_at":"2017-10-23T19:27:22.946+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367921, + "value":"Yes", + "question_id":13015, + "created_at":"2017-10-24T13:17:26.889+02:00", + "updated_at":"2017-10-24T13:17:26.889+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368735, + "value":"Yes", + "question_id":13015, + "created_at":"2017-11-02T13:24:03.745+01:00", + "updated_at":"2017-11-02T13:24:03.745+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369204, + "value":"Yes", + "question_id":13015, + "created_at":"2017-11-10T15:34:20.612+01:00", + "updated_at":"2017-11-10T15:34:20.612+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369377, + "value":"Yes", + "question_id":13015, + "created_at":"2017-11-11T20:42:21.522+01:00", + "updated_at":"2017-11-11T20:42:21.522+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370184, + "value":"Yes", + "question_id":13015, + "created_at":"2017-11-23T14:03:22.094+01:00", + "updated_at":"2017-11-23T14:03:22.094+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370744, + "value":"No", + "question_id":13015, + "created_at":"2017-11-27T09:33:10.980+01:00", + "updated_at":"2017-11-27T09:33:10.980+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370943, + "value":"No", + "question_id":13015, + "created_at":"2017-11-27T10:38:14.801+01:00", + "updated_at":"2017-11-27T10:38:14.801+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371112, + "value":"Yes", + "question_id":13015, + "created_at":"2017-11-27T13:46:25.665+01:00", + "updated_at":"2017-11-27T13:46:25.665+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371571, + "value":"Yes", + "question_id":13015, + "created_at":"2017-11-27T16:39:09.788+01:00", + "updated_at":"2017-11-27T16:39:09.788+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371738, + "value":"Yes", + "question_id":13015, + "created_at":"2017-11-28T13:09:51.534+01:00", + "updated_at":"2017-11-28T13:09:51.534+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":372042, + "value":"Yes", + "question_id":13015, + "created_at":"2017-11-28T16:48:26.467+01:00", + "updated_at":"2017-11-28T16:48:26.467+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372278, + "value":"Yes", + "question_id":13015, + "created_at":"2017-11-29T12:20:35.935+01:00", + "updated_at":"2017-11-29T12:20:35.935+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372605, + "value":"Yes", + "question_id":13015, + "created_at":"2017-11-29T21:38:42.273+01:00", + "updated_at":"2017-11-29T21:38:42.273+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372447, + "value":"Yes", + "question_id":13015, + "created_at":"2017-11-29T13:05:43.467+01:00", + "updated_at":"2017-11-29T13:05:43.467+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373237, + "value":"Yes", + "question_id":13015, + "created_at":"2017-12-04T11:10:01.532+01:00", + "updated_at":"2017-12-04T11:10:01.532+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373680, + "value":"No", + "question_id":13015, + "created_at":"2017-12-04T17:55:18.737+01:00", + "updated_at":"2017-12-04T17:55:18.737+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374672, + "value":"Yes", + "question_id":13015, + "created_at":"2017-12-13T09:41:04.277+01:00", + "updated_at":"2017-12-13T09:41:04.277+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375015, + "value":"No", + "question_id":13015, + "created_at":"2017-12-14T14:19:31.011+01:00", + "updated_at":"2017-12-14T14:19:31.011+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375429, + "value":"Yes", + "question_id":13015, + "created_at":"2017-12-28T10:07:41.813+01:00", + "updated_at":"2017-12-28T10:07:41.813+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375720, + "value":"Yes", + "question_id":13015, + "created_at":"2018-01-18T13:24:25.122+01:00", + "updated_at":"2018-01-18T13:24:25.122+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377697, + "value":"", + "question_id":13015, + "created_at":"2018-04-26T10:04:37.881+02:00", + "updated_at":"2018-04-26T10:04:37.881+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377699, + "value":"", + "question_id":13015, + "created_at":"2018-04-26T10:04:37.895+02:00", + "updated_at":"2018-04-26T10:04:37.895+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":377703, + "value":"", + "question_id":13015, + "created_at":"2018-04-26T10:04:37.923+02:00", + "updated_at":"2018-04-26T10:04:37.923+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377705, + "value":"", + "question_id":13015, + "created_at":"2018-04-26T10:04:37.936+02:00", + "updated_at":"2018-04-26T10:04:37.936+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":377706, + "value":"", + "question_id":13015, + "created_at":"2018-04-26T10:04:37.942+02:00", + "updated_at":"2018-04-26T10:04:37.942+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377707, + "value":"", + "question_id":13015, + "created_at":"2018-04-26T10:04:37.958+02:00", + "updated_at":"2018-04-26T10:04:37.958+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377708, + "value":"", + "question_id":13015, + "created_at":"2018-04-26T10:04:37.965+02:00", + "updated_at":"2018-04-26T10:04:37.965+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383982, + "value":"Yes", + "question_id":13015, + "created_at":"2017-12-05T15:48:42.946+01:00", + "updated_at":"2017-12-05T15:48:42.946+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618215, + "value":"Yes", + "question_id":13015, + "created_at":"2018-10-28T18:31:59.743+01:00", + "updated_at":"2018-10-28T18:31:59.743+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":618245, + "value":"Planned", + "question_id":13015, + "created_at":"2018-10-29T08:14:10.733+01:00", + "updated_at":"2018-10-29T08:14:10.733+01:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641549, + "value":"Yes", + "question_id":13015, + "created_at":"2018-10-30T13:51:27.853+01:00", + "updated_at":"2018-10-30T13:51:27.853+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":683660, + "value":"Yes", + "question_id":13015, + "created_at":"2018-10-31T18:24:19.621+01:00", + "updated_at":"2018-10-31T18:24:19.621+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756372, + "value":"Yes", + "question_id":13015, + "created_at":"2018-11-05T14:03:11.328+01:00", + "updated_at":"2018-11-05T14:03:11.328+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":774389, + "value":"Yes", + "question_id":13015, + "created_at":"2018-11-15T12:44:47.283+01:00", + "updated_at":"2018-11-15T12:44:47.283+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":827097, + "value":"Yes", + "question_id":13015, + "created_at":"2019-10-02T17:03:46.709+02:00", + "updated_at":"2019-10-02T17:03:46.709+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":1483001, + "value":"Yes", + "question_id":13015, + "created_at":"2020-11-16T09:02:24.127+01:00", + "updated_at":"2020-11-16T09:02:24.127+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"timeserver-ntp", + "title":"Do you provide Timeserver/NTP?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"NTP service", + "title_detailed":"Allows the synchronization of computer clocks over the Internet.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365601, + "value":"No", + "question_id":12973, + "created_at":"2017-09-06T12:15:17.198+02:00", + "updated_at":"2017-09-06T12:15:17.198+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365953, + "value":"Yes", + "question_id":12973, + "created_at":"2017-09-13T14:14:46.296+02:00", + "updated_at":"2017-09-13T14:14:46.296+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":366186, + "value":"Yes", + "question_id":12973, + "created_at":"2017-09-26T09:12:57.711+02:00", + "updated_at":"2017-09-26T09:12:57.711+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366345, + "value":"No", + "question_id":12973, + "created_at":"2017-09-29T13:48:47.606+02:00", + "updated_at":"2017-09-29T13:48:47.606+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366565, + "value":"No", + "question_id":12973, + "created_at":"2017-10-08T09:14:47.490+02:00", + "updated_at":"2017-10-08T09:14:47.490+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":366660, + "value":"Yes", + "question_id":12973, + "created_at":"2017-10-09T11:13:32.093+02:00", + "updated_at":"2017-10-09T11:13:32.093+02:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366761, + "value":"No", + "question_id":12973, + "created_at":"2017-10-10T13:00:05.263+02:00", + "updated_at":"2017-10-10T13:00:05.263+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":366819, + "value":"No", + "question_id":12973, + "created_at":"2017-10-10T16:18:33.040+02:00", + "updated_at":"2017-10-10T16:18:33.040+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366902, + "value":"Yes", + "question_id":12973, + "created_at":"2017-10-11T09:39:13.857+02:00", + "updated_at":"2017-10-11T09:39:13.857+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367458, + "value":"No", + "question_id":12973, + "created_at":"2017-10-17T11:57:58.984+02:00", + "updated_at":"2017-10-17T11:57:58.984+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367932, + "value":"No", + "question_id":12973, + "created_at":"2017-10-24T13:20:04.859+02:00", + "updated_at":"2017-10-24T13:20:04.859+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":368178, + "value":"No", + "question_id":12973, + "created_at":"2017-10-30T09:21:56.636+01:00", + "updated_at":"2017-10-30T09:21:56.636+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368535, + "value":"No", + "question_id":12973, + "created_at":"2017-10-31T14:31:08.523+01:00", + "updated_at":"2017-10-31T14:31:08.523+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369216, + "value":"Yes", + "question_id":12973, + "created_at":"2017-11-10T15:35:56.686+01:00", + "updated_at":"2017-11-10T15:35:56.686+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369384, + "value":"No", + "question_id":12973, + "created_at":"2017-11-11T20:44:33.370+01:00", + "updated_at":"2017-11-11T20:44:33.370+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370203, + "value":"No", + "question_id":12973, + "created_at":"2017-11-23T14:07:23.678+01:00", + "updated_at":"2017-11-23T14:07:23.678+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370756, + "value":"No", + "question_id":12973, + "created_at":"2017-11-27T09:34:11.991+01:00", + "updated_at":"2017-11-27T09:34:11.991+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370949, + "value":"No", + "question_id":12973, + "created_at":"2017-11-27T10:38:57.648+01:00", + "updated_at":"2017-11-27T10:38:57.648+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371119, + "value":"No", + "question_id":12973, + "created_at":"2017-11-27T13:47:09.660+01:00", + "updated_at":"2017-11-27T13:47:09.660+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371752, + "value":"No", + "question_id":12973, + "created_at":"2017-11-28T13:11:13.090+01:00", + "updated_at":"2017-11-28T13:11:13.090+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372293, + "value":"Yes", + "question_id":12973, + "created_at":"2017-11-29T12:25:07.865+01:00", + "updated_at":"2017-11-29T12:25:07.865+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372619, + "value":"No", + "question_id":12973, + "created_at":"2017-11-29T21:41:04.888+01:00", + "updated_at":"2017-11-29T21:41:04.888+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373244, + "value":"No", + "question_id":12973, + "created_at":"2017-12-04T11:11:16.438+01:00", + "updated_at":"2017-12-04T11:11:16.438+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":373465, + "value":"No", + "question_id":12973, + "created_at":"2017-12-04T12:41:31.151+01:00", + "updated_at":"2017-12-04T12:41:31.151+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373691, + "value":"No", + "question_id":12973, + "created_at":"2017-12-04T17:56:55.003+01:00", + "updated_at":"2017-12-04T17:56:55.003+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374321, + "value":"No", + "question_id":12973, + "created_at":"2017-12-06T13:01:37.566+01:00", + "updated_at":"2017-12-06T13:01:37.566+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375024, + "value":"Yes", + "question_id":12973, + "created_at":"2017-12-14T14:20:27.437+01:00", + "updated_at":"2017-12-14T14:20:27.437+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375324, + "value":"Yes", + "question_id":12973, + "created_at":"2017-12-27T14:41:56.988+01:00", + "updated_at":"2017-12-27T14:41:56.988+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375434, + "value":"Yes", + "question_id":12973, + "created_at":"2017-12-28T10:08:41.165+01:00", + "updated_at":"2017-12-28T10:08:41.165+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377932, + "value":"", + "question_id":12973, + "created_at":"2018-04-26T10:04:39.883+02:00", + "updated_at":"2018-04-26T10:04:39.883+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":377933, + "value":"", + "question_id":12973, + "created_at":"2018-04-26T10:04:39.896+02:00", + "updated_at":"2018-04-26T10:04:39.896+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377934, + "value":"", + "question_id":12973, + "created_at":"2018-04-26T10:04:39.903+02:00", + "updated_at":"2018-04-26T10:04:39.903+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":377938, + "value":"", + "question_id":12973, + "created_at":"2018-04-26T10:04:39.940+02:00", + "updated_at":"2018-04-26T10:04:39.940+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":377939, + "value":"", + "question_id":12973, + "created_at":"2018-04-26T10:04:39.949+02:00", + "updated_at":"2018-04-26T10:04:39.949+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377940, + "value":"", + "question_id":12973, + "created_at":"2018-04-26T10:04:39.960+02:00", + "updated_at":"2018-04-26T10:04:39.960+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":377941, + "value":"", + "question_id":12973, + "created_at":"2018-04-26T10:04:39.967+02:00", + "updated_at":"2018-04-26T10:04:39.967+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377942, + "value":"", + "question_id":12973, + "created_at":"2018-04-26T10:04:39.983+02:00", + "updated_at":"2018-04-26T10:04:39.983+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383960, + "value":"Yes", + "question_id":12973, + "created_at":"2017-12-05T15:55:23.760+01:00", + "updated_at":"2017-12-05T15:55:23.760+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618239, + "value":"Yes", + "question_id":12973, + "created_at":"2018-10-28T18:42:08.860+01:00", + "updated_at":"2018-10-28T18:42:08.860+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":999967, + "value":"Yes", + "question_id":12973, + "created_at":"2019-11-03T22:53:52.943+01:00", + "updated_at":"2019-11-03T22:53:52.943+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377943, + "value":"", + "question_id":12973, + "created_at":"2018-04-26T10:04:40.001+02:00", + "updated_at":"2018-04-26T10:04:40.001+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":1482910, + "value":"Yes", + "question_id":12973, + "created_at":"2020-11-14T16:01:41.921+01:00", + "updated_at":"2020-11-14T16:01:41.921+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":1502658, + "value":"No", + "question_id":12973, + "created_at":"2021-11-16T00:41:49.177+01:00", + "updated_at":"2021-11-16T00:41:49.177+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-portal", + "title":"Do you offer Multimedia content portal?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Provision of content portal/s to users for hosting and viewing multi-media content.", + "title_detailed":"Multi-media content portal", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365598, + "value":"No", + "question_id":12927, + "created_at":"2017-09-06T12:15:06.304+02:00", + "updated_at":"2017-09-06T12:15:06.304+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365902, + "value":"Yes", + "question_id":12927, + "created_at":"2017-09-13T13:43:20.856+02:00", + "updated_at":"2017-09-13T13:43:20.856+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365949, + "value":"Yes", + "question_id":12927, + "created_at":"2017-09-13T14:14:31.625+02:00", + "updated_at":"2017-09-13T14:14:31.625+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366342, + "value":"No", + "question_id":12927, + "created_at":"2017-09-29T13:48:34.820+02:00", + "updated_at":"2017-09-29T13:48:34.820+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366559, + "value":"No", + "question_id":12927, + "created_at":"2017-10-08T09:14:00.931+02:00", + "updated_at":"2017-10-08T09:14:00.931+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":366654, + "value":"Yes", + "question_id":12927, + "created_at":"2017-10-09T11:10:29.167+02:00", + "updated_at":"2017-10-09T11:10:29.167+02:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":366816, + "value":"No", + "question_id":12927, + "created_at":"2017-10-10T16:18:10.876+02:00", + "updated_at":"2017-10-10T16:18:10.876+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366898, + "value":"Yes", + "question_id":12927, + "created_at":"2017-10-11T09:38:51.375+02:00", + "updated_at":"2017-10-11T09:38:51.375+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367151, + "value":"No", + "question_id":12927, + "created_at":"2017-10-11T13:39:10.916+02:00", + "updated_at":"2017-10-11T13:39:10.916+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367453, + "value":"Yes", + "question_id":12927, + "created_at":"2017-10-17T11:57:00.098+02:00", + "updated_at":"2017-10-17T11:57:00.098+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367929, + "value":"No", + "question_id":12927, + "created_at":"2017-10-24T13:19:32.344+02:00", + "updated_at":"2017-10-24T13:19:32.344+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":368175, + "value":"No", + "question_id":12927, + "created_at":"2017-10-30T09:21:47.010+01:00", + "updated_at":"2017-10-30T09:21:47.010+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368508, + "value":"Yes", + "question_id":12927, + "created_at":"2017-10-31T14:28:19.860+01:00", + "updated_at":"2017-10-31T14:28:19.860+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368908, + "value":"No", + "question_id":12927, + "created_at":"2017-11-08T15:37:22.274+01:00", + "updated_at":"2017-11-08T15:37:22.274+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369068, + "value":"Yes", + "question_id":12927, + "created_at":"2017-11-10T11:02:54.022+01:00", + "updated_at":"2017-11-10T11:02:54.022+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369213, + "value":"Yes", + "question_id":12927, + "created_at":"2017-11-10T15:35:40.561+01:00", + "updated_at":"2017-11-10T15:35:40.561+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370199, + "value":"No", + "question_id":12927, + "created_at":"2017-11-23T14:06:55.978+01:00", + "updated_at":"2017-11-23T14:06:55.978+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370753, + "value":"No", + "question_id":12927, + "created_at":"2017-11-27T09:34:03.876+01:00", + "updated_at":"2017-11-27T09:34:03.876+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370946, + "value":"No", + "question_id":12927, + "created_at":"2017-11-27T10:38:49.030+01:00", + "updated_at":"2017-11-27T10:38:49.030+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371116, + "value":"No", + "question_id":12927, + "created_at":"2017-11-27T13:46:57.924+01:00", + "updated_at":"2017-11-27T13:46:57.924+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371749, + "value":"Yes", + "question_id":12927, + "created_at":"2017-11-28T13:11:00.575+01:00", + "updated_at":"2017-11-28T13:11:00.575+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372289, + "value":"Yes", + "question_id":12927, + "created_at":"2017-11-29T12:22:47.728+01:00", + "updated_at":"2017-11-29T12:22:47.728+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372616, + "value":"No", + "question_id":12927, + "created_at":"2017-11-29T21:40:50.765+01:00", + "updated_at":"2017-11-29T21:40:50.765+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373241, + "value":"Yes", + "question_id":12927, + "created_at":"2017-12-04T11:10:52.064+01:00", + "updated_at":"2017-12-04T11:10:52.064+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":373459, + "value":"No", + "question_id":12927, + "created_at":"2017-12-04T12:40:26.432+01:00", + "updated_at":"2017-12-04T12:40:26.432+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373688, + "value":"No", + "question_id":12927, + "created_at":"2017-12-04T17:56:35.829+01:00", + "updated_at":"2017-12-04T17:56:35.829+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374923, + "value":"Yes", + "question_id":12927, + "created_at":"2017-12-14T12:47:38.523+01:00", + "updated_at":"2017-12-14T12:47:38.523+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375317, + "value":"Yes", + "question_id":12927, + "created_at":"2017-12-27T14:38:54.178+01:00", + "updated_at":"2017-12-27T14:38:54.178+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375445, + "value":"Yes", + "question_id":12927, + "created_at":"2017-12-28T10:18:05.631+01:00", + "updated_at":"2017-12-28T10:18:05.631+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":376012, + "value":"Yes", + "question_id":12927, + "created_at":"2018-02-16T09:46:15.262+01:00", + "updated_at":"2018-02-16T09:46:15.262+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377790, + "value":"", + "question_id":12927, + "created_at":"2018-04-26T10:04:38.608+02:00", + "updated_at":"2018-04-26T10:04:38.608+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":377791, + "value":"", + "question_id":12927, + "created_at":"2018-04-26T10:04:38.617+02:00", + "updated_at":"2018-04-26T10:04:38.617+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377792, + "value":"", + "question_id":12927, + "created_at":"2018-04-26T10:04:38.622+02:00", + "updated_at":"2018-04-26T10:04:38.622+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":377797, + "value":"", + "question_id":12927, + "created_at":"2018-04-26T10:04:38.654+02:00", + "updated_at":"2018-04-26T10:04:38.654+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":377798, + "value":"", + "question_id":12927, + "created_at":"2018-04-26T10:04:38.659+02:00", + "updated_at":"2018-04-26T10:04:38.659+02:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377799, + "value":"", + "question_id":12927, + "created_at":"2018-04-26T10:04:38.667+02:00", + "updated_at":"2018-04-26T10:04:38.667+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377800, + "value":"", + "question_id":12927, + "created_at":"2018-04-26T10:04:38.684+02:00", + "updated_at":"2018-04-26T10:04:38.684+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":384020, + "value":"Yes", + "question_id":12927, + "created_at":"2017-12-05T15:54:52.003+01:00", + "updated_at":"2017-12-05T15:54:52.003+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756392, + "value":"Yes", + "question_id":12927, + "created_at":"2018-11-05T14:29:12.853+01:00", + "updated_at":"2018-11-05T14:29:12.853+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377801, + "value":"", + "question_id":12927, + "created_at":"2018-04-26T10:04:38.690+02:00", + "updated_at":"2018-04-26T10:04:38.690+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":1485838, + "value":"Yes", + "question_id":12927, + "created_at":"2020-11-17T15:19:48.095+01:00", + "updated_at":"2020-11-17T15:19:48.095+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":1496992, + "value":"Yes", + "question_id":12927, + "created_at":"2021-08-31T08:42:27.904+02:00", + "updated_at":"2021-08-31T08:42:27.904+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":1500314, + "value":"Yes", + "question_id":12927, + "created_at":"2021-11-04T15:25:33.389+01:00", + "updated_at":"2021-11-04T15:25:33.389+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"video-production", + "title":"Do you offer Event recording and streaming", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Event recording/streaming", + "title_detailed":"Provision of equipment and/or software to support event streaming/recording.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365645, + "value":"No", + "question_id":13023, + "created_at":"2017-09-06T12:19:28.593+02:00", + "updated_at":"2017-09-06T12:19:28.593+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366375, + "value":"No", + "question_id":13023, + "created_at":"2017-09-29T13:53:28.621+02:00", + "updated_at":"2017-09-29T13:53:28.621+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":366673, + "value":"No", + "question_id":13023, + "created_at":"2017-10-09T11:19:47.420+02:00", + "updated_at":"2017-10-09T11:19:47.420+02:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366779, + "value":"No", + "question_id":13023, + "created_at":"2017-10-10T13:19:57.956+02:00", + "updated_at":"2017-10-10T13:19:57.956+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366917, + "value":"No", + "question_id":13023, + "created_at":"2017-10-11T10:42:29.440+02:00", + "updated_at":"2017-10-11T10:42:29.440+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367367, + "value":"No", + "question_id":13023, + "created_at":"2017-10-11T21:21:32.287+02:00", + "updated_at":"2017-10-11T21:21:32.287+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367555, + "value":"No", + "question_id":13023, + "created_at":"2017-10-17T14:45:04.607+02:00", + "updated_at":"2017-10-17T14:45:04.607+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367969, + "value":"No", + "question_id":13023, + "created_at":"2017-10-24T13:31:26.681+02:00", + "updated_at":"2017-10-24T13:31:26.681+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368971, + "value":"No", + "question_id":13023, + "created_at":"2017-11-08T16:00:25.757+01:00", + "updated_at":"2017-11-08T16:00:25.757+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369254, + "value":"Planned", + "question_id":13023, + "created_at":"2017-11-10T15:40:26.154+01:00", + "updated_at":"2017-11-10T15:40:26.154+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369707, + "value":"Yes", + "question_id":13023, + "created_at":"2017-11-21T11:45:49.334+01:00", + "updated_at":"2017-11-21T11:45:49.334+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370244, + "value":"No", + "question_id":13023, + "created_at":"2017-11-23T14:13:16.868+01:00", + "updated_at":"2017-11-23T14:13:16.868+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370790, + "value":"No", + "question_id":13023, + "created_at":"2017-11-27T09:37:21.230+01:00", + "updated_at":"2017-11-27T09:37:21.230+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371257, + "value":"Planned", + "question_id":13023, + "created_at":"2017-11-27T14:21:57.568+01:00", + "updated_at":"2017-11-27T14:21:57.568+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371441, + "value":"No", + "question_id":13023, + "created_at":"2017-11-27T14:50:57.308+01:00", + "updated_at":"2017-11-27T14:50:57.308+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371793, + "value":"No", + "question_id":13023, + "created_at":"2017-11-28T13:19:29.613+01:00", + "updated_at":"2017-11-28T13:19:29.613+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372339, + "value":"No", + "question_id":13023, + "created_at":"2017-11-29T12:35:15.904+01:00", + "updated_at":"2017-11-29T12:35:15.904+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372663, + "value":"No", + "question_id":13023, + "created_at":"2017-11-29T21:48:51.221+01:00", + "updated_at":"2017-11-29T21:48:51.221+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373275, + "value":"Yes", + "question_id":13023, + "created_at":"2017-12-04T11:16:58.729+01:00", + "updated_at":"2017-12-04T11:16:58.729+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373726, + "value":"No", + "question_id":13023, + "created_at":"2017-12-04T18:01:49.453+01:00", + "updated_at":"2017-12-04T18:01:49.453+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374386, + "value":"No", + "question_id":13023, + "created_at":"2017-12-06T13:24:20.408+01:00", + "updated_at":"2017-12-06T13:24:20.408+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374705, + "value":"Yes", + "question_id":13023, + "created_at":"2017-12-13T10:19:56.203+01:00", + "updated_at":"2017-12-13T10:19:56.203+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375054, + "value":"No", + "question_id":13023, + "created_at":"2017-12-14T14:22:40.100+01:00", + "updated_at":"2017-12-14T14:22:40.100+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375482, + "value":"Yes", + "question_id":13023, + "created_at":"2017-12-28T10:22:53.786+01:00", + "updated_at":"2017-12-28T10:22:53.786+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375914, + "value":"No", + "question_id":13023, + "created_at":"2018-01-23T12:35:30.318+01:00", + "updated_at":"2018-01-23T12:35:30.318+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":379206, + "value":"", + "question_id":13023, + "created_at":"2018-04-26T10:04:51.630+02:00", + "updated_at":"2018-04-26T10:04:51.630+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":379207, + "value":"", + "question_id":13023, + "created_at":"2018-04-26T10:04:51.638+02:00", + "updated_at":"2018-04-26T10:04:51.638+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":379208, + "value":"", + "question_id":13023, + "created_at":"2018-04-26T10:04:51.643+02:00", + "updated_at":"2018-04-26T10:04:51.643+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":379210, + "value":"", + "question_id":13023, + "created_at":"2018-04-26T10:04:51.653+02:00", + "updated_at":"2018-04-26T10:04:51.653+02:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":379211, + "value":"", + "question_id":13023, + "created_at":"2018-04-26T10:04:51.659+02:00", + "updated_at":"2018-04-26T10:04:51.659+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":379212, + "value":"", + "question_id":13023, + "created_at":"2018-04-26T10:04:51.665+02:00", + "updated_at":"2018-04-26T10:04:51.665+02:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":379213, + "value":"", + "question_id":13023, + "created_at":"2018-04-26T10:04:51.673+02:00", + "updated_at":"2018-04-26T10:04:51.673+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":379214, + "value":"", + "question_id":13023, + "created_at":"2018-04-26T10:04:51.678+02:00", + "updated_at":"2018-04-26T10:04:51.678+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":379215, + "value":"", + "question_id":13023, + "created_at":"2018-04-26T10:04:51.683+02:00", + "updated_at":"2018-04-26T10:04:51.683+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":379216, + "value":"", + "question_id":13023, + "created_at":"2018-04-26T10:04:51.692+02:00", + "updated_at":"2018-04-26T10:04:51.692+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":379217, + "value":"", + "question_id":13023, + "created_at":"2018-04-26T10:04:51.697+02:00", + "updated_at":"2018-04-26T10:04:51.697+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":379218, + "value":"", + "question_id":13023, + "created_at":"2018-04-26T10:04:51.703+02:00", + "updated_at":"2018-04-26T10:04:51.703+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":379219, + "value":"", + "question_id":13023, + "created_at":"2018-04-26T10:04:51.708+02:00", + "updated_at":"2018-04-26T10:04:51.708+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":379220, + "value":"", + "question_id":13023, + "created_at":"2018-04-26T10:04:51.718+02:00", + "updated_at":"2018-04-26T10:04:51.718+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":379221, + "value":"", + "question_id":13023, + "created_at":"2018-04-26T10:04:51.725+02:00", + "updated_at":"2018-04-26T10:04:51.725+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383990, + "value":"No", + "question_id":13023, + "created_at":"2017-12-06T13:43:19.687+01:00", + "updated_at":"2017-12-06T13:43:19.687+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":379222, + "value":"", + "question_id":13023, + "created_at":"2018-04-26T10:04:51.732+02:00", + "updated_at":"2018-04-26T10:04:51.732+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1483417, + "value":"No", + "question_id":13023, + "created_at":"2020-11-16T14:00:35.233+01:00", + "updated_at":"2020-11-16T14:00:35.233+01:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-learning-environment", + "title":"Do you offer Virtual Learning Environment (VLE) software?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"VLE", + "title_detailed":"Online e-learning education system that provides virtual access to resources used in teaching..", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365656, + "value":"Yes", + "question_id":13025, + "created_at":"2017-09-06T12:20:13.764+02:00", + "updated_at":"2017-09-06T12:20:13.764+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365726, + "value":"Yes", + "question_id":13025, + "created_at":"2017-09-07T15:36:01.460+02:00", + "updated_at":"2017-09-07T15:36:01.460+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366678, + "value":"Planned", + "question_id":13025, + "created_at":"2017-10-09T12:05:35.333+02:00", + "updated_at":"2017-10-09T12:05:35.333+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366911, + "value":"Yes", + "question_id":13025, + "created_at":"2017-10-11T10:41:22.403+02:00", + "updated_at":"2017-10-11T10:41:22.403+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366965, + "value":"Planned", + "question_id":13025, + "created_at":"2017-10-11T10:53:06.997+02:00", + "updated_at":"2017-10-11T10:53:06.997+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367163, + "value":"Yes", + "question_id":13025, + "created_at":"2017-10-11T13:46:27.051+02:00", + "updated_at":"2017-10-11T13:46:27.051+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367379, + "value":"Yes", + "question_id":13025, + "created_at":"2017-10-11T21:22:30.485+02:00", + "updated_at":"2017-10-11T21:22:30.485+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367525, + "value":"No", + "question_id":13025, + "created_at":"2017-10-17T12:11:21.469+02:00", + "updated_at":"2017-10-17T12:11:21.469+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367776, + "value":"No", + "question_id":13025, + "created_at":"2017-10-23T19:41:17.037+02:00", + "updated_at":"2017-10-23T19:41:17.037+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367980, + "value":"Yes", + "question_id":13025, + "created_at":"2017-10-24T13:33:37.343+02:00", + "updated_at":"2017-10-24T13:33:37.343+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368380, + "value":"Yes", + "question_id":13025, + "created_at":"2017-10-31T09:01:05.254+01:00", + "updated_at":"2017-10-31T09:01:05.254+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368955, + "value":"Yes", + "question_id":13025, + "created_at":"2017-11-08T15:54:23.226+01:00", + "updated_at":"2017-11-08T15:54:23.226+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369265, + "value":"Yes", + "question_id":13025, + "created_at":"2017-11-10T15:41:21.354+01:00", + "updated_at":"2017-11-10T15:41:21.354+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":369539, + "value":"Yes", + "question_id":13025, + "created_at":"2017-11-13T20:39:36.605+01:00", + "updated_at":"2017-11-13T20:39:36.605+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":369918, + "value":"Yes", + "question_id":13025, + "created_at":"2017-11-21T16:53:44.463+01:00", + "updated_at":"2017-11-21T16:53:44.463+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370261, + "value":"No", + "question_id":13025, + "created_at":"2017-11-23T14:16:41.130+01:00", + "updated_at":"2017-11-23T14:16:41.130+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370805, + "value":"No", + "question_id":13025, + "created_at":"2017-11-27T09:38:36.187+01:00", + "updated_at":"2017-11-27T09:38:36.187+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371139, + "value":"Yes", + "question_id":13025, + "created_at":"2017-11-27T13:58:26.604+01:00", + "updated_at":"2017-11-27T13:58:26.604+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371807, + "value":"Yes", + "question_id":13025, + "created_at":"2017-11-28T13:20:12.533+01:00", + "updated_at":"2017-11-28T13:20:12.533+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":371879, + "value":"Planned", + "question_id":13025, + "created_at":"2017-11-28T15:06:28.500+01:00", + "updated_at":"2017-11-28T15:06:28.500+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372358, + "value":"No", + "question_id":13025, + "created_at":"2017-11-29T12:38:55.691+01:00", + "updated_at":"2017-11-29T12:38:55.691+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372672, + "value":"Planned", + "question_id":13025, + "created_at":"2017-11-29T21:54:16.950+01:00", + "updated_at":"2017-11-29T21:54:16.950+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":372867, + "value":"No", + "question_id":13025, + "created_at":"2017-11-30T13:40:42.400+01:00", + "updated_at":"2017-11-30T13:40:42.400+01:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373737, + "value":"Yes", + "question_id":13025, + "created_at":"2017-12-04T18:03:01.623+01:00", + "updated_at":"2017-12-04T18:03:01.623+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374079, + "value":"Yes", + "question_id":13025, + "created_at":"2017-12-06T07:29:22.693+01:00", + "updated_at":"2017-12-06T07:29:22.693+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374401, + "value":"Yes", + "question_id":13025, + "created_at":"2017-12-06T13:30:30.091+01:00", + "updated_at":"2017-12-06T13:30:30.091+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374717, + "value":"Yes", + "question_id":13025, + "created_at":"2017-12-13T10:22:50.055+01:00", + "updated_at":"2017-12-13T10:22:50.055+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375065, + "value":"Yes", + "question_id":13025, + "created_at":"2017-12-14T14:23:32.120+01:00", + "updated_at":"2017-12-14T14:23:32.120+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375491, + "value":"Yes", + "question_id":13025, + "created_at":"2017-12-28T10:24:07.248+01:00", + "updated_at":"2017-12-28T10:24:07.248+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":379744, + "value":"", + "question_id":13025, + "created_at":"2018-04-26T10:04:56.406+02:00", + "updated_at":"2018-04-26T10:04:56.406+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":379746, + "value":"", + "question_id":13025, + "created_at":"2018-04-26T10:04:56.420+02:00", + "updated_at":"2018-04-26T10:04:56.420+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":379750, + "value":"", + "question_id":13025, + "created_at":"2018-04-26T10:04:56.451+02:00", + "updated_at":"2018-04-26T10:04:56.451+02:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":379752, + "value":"", + "question_id":13025, + "created_at":"2018-04-26T10:04:56.473+02:00", + "updated_at":"2018-04-26T10:04:56.473+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":379753, + "value":"", + "question_id":13025, + "created_at":"2018-04-26T10:04:56.489+02:00", + "updated_at":"2018-04-26T10:04:56.489+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":379756, + "value":"", + "question_id":13025, + "created_at":"2018-04-26T10:04:56.517+02:00", + "updated_at":"2018-04-26T10:04:56.517+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":379757, + "value":"", + "question_id":13025, + "created_at":"2018-04-26T10:04:56.524+02:00", + "updated_at":"2018-04-26T10:04:56.524+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383993, + "value":"Yes", + "question_id":13025, + "created_at":"2017-12-06T13:45:31.692+01:00", + "updated_at":"2017-12-06T13:45:31.692+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618224, + "value":"Yes", + "question_id":13025, + "created_at":"2018-10-28T18:34:40.974+01:00", + "updated_at":"2018-10-28T18:34:40.974+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":618246, + "value":"Yes", + "question_id":13025, + "created_at":"2018-10-29T08:14:45.161+01:00", + "updated_at":"2018-10-29T08:14:45.161+01:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641550, + "value":"Yes", + "question_id":13025, + "created_at":"2018-10-30T13:51:50.015+01:00", + "updated_at":"2018-10-30T13:51:50.015+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756373, + "value":"Yes", + "question_id":13025, + "created_at":"2018-11-05T14:03:21.641+01:00", + "updated_at":"2018-11-05T14:03:21.641+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":1470711, + "value":"Yes", + "question_id":13025, + "created_at":"2020-10-16T17:52:08.011+02:00", + "updated_at":"2020-10-16T17:52:08.011+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":1501058, + "value":"Planned", + "question_id":13025, + "created_at":"2021-11-09T16:14:44.887+01:00", + "updated_at":"2021-11-09T16:14:44.887+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"virtual-machines-iaas", + "title":"Do you offer Virtual machines/IaaS?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Virtual machines/IaaS", + "title_detailed":"Access to virtual computing resources.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365646, + "value":"No", + "question_id":13027, + "created_at":"2017-09-06T12:19:30.763+02:00", + "updated_at":"2017-09-06T12:19:30.763+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365717, + "value":"No", + "question_id":13027, + "created_at":"2017-09-07T15:35:10.084+02:00", + "updated_at":"2017-09-07T15:35:10.084+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365931, + "value":"No", + "question_id":13027, + "created_at":"2017-09-13T13:46:34.534+02:00", + "updated_at":"2017-09-13T13:46:34.534+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366376, + "value":"No", + "question_id":13027, + "created_at":"2017-09-29T13:53:30.533+02:00", + "updated_at":"2017-09-29T13:53:30.533+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366605, + "value":"No", + "question_id":13027, + "created_at":"2017-10-08T09:20:02.261+02:00", + "updated_at":"2017-10-08T09:20:02.261+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366778, + "value":"No", + "question_id":13027, + "created_at":"2017-10-10T13:19:02.565+02:00", + "updated_at":"2017-10-10T13:19:02.565+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366870, + "value":"No", + "question_id":13027, + "created_at":"2017-10-11T09:35:01.951+02:00", + "updated_at":"2017-10-11T09:35:01.951+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367511, + "value":"Yes", + "question_id":13027, + "created_at":"2017-10-17T12:09:00.030+02:00", + "updated_at":"2017-10-17T12:09:00.030+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367766, + "value":"No", + "question_id":13027, + "created_at":"2017-10-23T19:40:18.709+02:00", + "updated_at":"2017-10-23T19:40:18.709+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367970, + "value":"No", + "question_id":13027, + "created_at":"2017-10-24T13:31:34.161+02:00", + "updated_at":"2017-10-24T13:31:34.161+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368566, + "value":"Yes", + "question_id":13027, + "created_at":"2017-10-31T14:41:36.511+01:00", + "updated_at":"2017-10-31T14:41:36.511+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369091, + "value":"No", + "question_id":13027, + "created_at":"2017-11-10T11:16:37.175+01:00", + "updated_at":"2017-11-10T11:16:37.175+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369255, + "value":"Yes", + "question_id":13027, + "created_at":"2017-11-10T15:40:29.794+01:00", + "updated_at":"2017-11-10T15:40:29.794+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369805, + "value":"Yes", + "question_id":13027, + "created_at":"2017-11-21T13:39:34.102+01:00", + "updated_at":"2017-11-21T13:39:34.102+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":369912, + "value":"No", + "question_id":13027, + "created_at":"2017-11-21T16:53:02.191+01:00", + "updated_at":"2017-11-21T16:53:02.191+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370245, + "value":"No", + "question_id":13027, + "created_at":"2017-11-23T14:13:19.708+01:00", + "updated_at":"2017-11-23T14:13:19.708+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370793, + "value":"Planned", + "question_id":13027, + "created_at":"2017-11-27T09:37:46.879+01:00", + "updated_at":"2017-11-27T09:37:46.879+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371255, + "value":"No", + "question_id":13027, + "created_at":"2017-11-27T14:21:52.817+01:00", + "updated_at":"2017-11-27T14:21:52.817+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371442, + "value":"No", + "question_id":13027, + "created_at":"2017-11-27T14:50:59.534+01:00", + "updated_at":"2017-11-27T14:50:59.534+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371794, + "value":"No", + "question_id":13027, + "created_at":"2017-11-28T13:19:32.299+01:00", + "updated_at":"2017-11-28T13:19:32.299+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372340, + "value":"No", + "question_id":13027, + "created_at":"2017-11-29T12:35:19.234+01:00", + "updated_at":"2017-11-29T12:35:19.234+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373274, + "value":"Yes", + "question_id":13027, + "created_at":"2017-12-04T11:16:55.056+01:00", + "updated_at":"2017-12-04T11:16:55.056+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373727, + "value":"No", + "question_id":13027, + "created_at":"2017-12-04T18:01:52.256+01:00", + "updated_at":"2017-12-04T18:01:52.256+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":373800, + "value":"Yes", + "question_id":13027, + "created_at":"2017-12-04T19:25:51.546+01:00", + "updated_at":"2017-12-04T19:25:51.546+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":373848, + "value":"No", + "question_id":13027, + "created_at":"2017-12-05T11:45:25.242+01:00", + "updated_at":"2017-12-05T11:45:25.242+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374387, + "value":"No", + "question_id":13027, + "created_at":"2017-12-06T13:24:29.208+01:00", + "updated_at":"2017-12-06T13:24:29.208+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374927, + "value":"Yes", + "question_id":13027, + "created_at":"2017-12-14T12:49:08.567+01:00", + "updated_at":"2017-12-14T12:49:08.567+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375055, + "value":"Yes", + "question_id":13027, + "created_at":"2017-12-14T14:22:41.462+01:00", + "updated_at":"2017-12-14T14:22:41.462+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375484, + "value":"No", + "question_id":13027, + "created_at":"2017-12-28T10:23:36.717+01:00", + "updated_at":"2017-12-28T10:23:36.717+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375698, + "value":"No", + "question_id":13027, + "created_at":"2018-01-09T17:15:43.369+01:00", + "updated_at":"2018-01-09T17:15:43.369+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":379261, + "value":"", + "question_id":13027, + "created_at":"2018-04-26T10:04:51.983+02:00", + "updated_at":"2018-04-26T10:04:51.983+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":379262, + "value":"", + "question_id":13027, + "created_at":"2018-04-26T10:04:51.992+02:00", + "updated_at":"2018-04-26T10:04:51.992+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":379263, + "value":"", + "question_id":13027, + "created_at":"2018-04-26T10:04:51.996+02:00", + "updated_at":"2018-04-26T10:04:51.996+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":379266, + "value":"", + "question_id":13027, + "created_at":"2018-04-26T10:04:52.011+02:00", + "updated_at":"2018-04-26T10:04:52.011+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":379267, + "value":"", + "question_id":13027, + "created_at":"2018-04-26T10:04:52.023+02:00", + "updated_at":"2018-04-26T10:04:52.023+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":379268, + "value":"", + "question_id":13027, + "created_at":"2018-04-26T10:04:52.032+02:00", + "updated_at":"2018-04-26T10:04:52.032+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":379269, + "value":"", + "question_id":13027, + "created_at":"2018-04-26T10:04:52.036+02:00", + "updated_at":"2018-04-26T10:04:52.036+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":379271, + "value":"", + "question_id":13027, + "created_at":"2018-04-26T10:04:52.055+02:00", + "updated_at":"2018-04-26T10:04:52.055+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":379272, + "value":"", + "question_id":13027, + "created_at":"2018-04-26T10:04:52.064+02:00", + "updated_at":"2018-04-26T10:04:52.064+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383991, + "value":"Yes", + "question_id":13027, + "created_at":"2017-12-05T16:00:53.217+01:00", + "updated_at":"2017-12-05T16:00:53.217+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756401, + "value":"Yes", + "question_id":13027, + "created_at":"2018-11-05T14:32:26.457+01:00", + "updated_at":"2018-11-05T14:32:26.457+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":963607, + "value":"Yes", + "question_id":13027, + "created_at":"2019-10-30T16:55:32.797+01:00", + "updated_at":"2019-10-30T16:55:32.797+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":1470845, + "value":"Yes", + "question_id":13027, + "created_at":"2020-10-20T15:38:24.944+02:00", + "updated_at":"2020-10-20T15:38:24.944+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"voip", + "title":"Do you offer VoIP?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"VoIP", + "title_detailed":"Service to deliver voice communications and multimedia sessions over Internet Protocol (IP) networks.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365585, + "value":"No", + "question_id":13033, + "created_at":"2017-09-06T12:14:01.536+02:00", + "updated_at":"2017-09-06T12:14:01.536+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":366177, + "value":"Yes", + "question_id":13033, + "created_at":"2017-09-26T09:09:20.066+02:00", + "updated_at":"2017-09-26T09:09:20.066+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366615, + "value":"Yes", + "question_id":13033, + "created_at":"2017-10-08T09:22:46.281+02:00", + "updated_at":"2017-10-08T09:22:46.281+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367139, + "value":"Yes", + "question_id":13033, + "created_at":"2017-10-11T13:33:03.405+02:00", + "updated_at":"2017-10-11T13:33:03.405+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367632, + "value":"Yes", + "question_id":13033, + "created_at":"2017-10-23T11:50:05.632+02:00", + "updated_at":"2017-10-23T11:50:05.632+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367712, + "value":"Yes", + "question_id":13033, + "created_at":"2017-10-23T19:26:53.136+02:00", + "updated_at":"2017-10-23T19:26:53.136+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368388, + "value":"Yes", + "question_id":13033, + "created_at":"2017-10-31T13:03:54.698+01:00", + "updated_at":"2017-10-31T13:03:54.698+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368727, + "value":"Yes", + "question_id":13033, + "created_at":"2017-11-02T13:23:43.110+01:00", + "updated_at":"2017-11-02T13:23:43.110+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368901, + "value":"Yes", + "question_id":13033, + "created_at":"2017-11-08T15:34:52.882+01:00", + "updated_at":"2017-11-08T15:34:52.882+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370169, + "value":"Yes", + "question_id":13033, + "created_at":"2017-11-23T13:56:10.091+01:00", + "updated_at":"2017-11-23T13:56:10.091+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370736, + "value":"No", + "question_id":13033, + "created_at":"2017-11-27T09:32:39.012+01:00", + "updated_at":"2017-11-27T09:32:39.012+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370937, + "value":"Yes", + "question_id":13033, + "created_at":"2017-11-27T10:37:44.472+01:00", + "updated_at":"2017-11-27T10:37:44.472+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371562, + "value":"No", + "question_id":13033, + "created_at":"2017-11-27T16:37:52.333+01:00", + "updated_at":"2017-11-27T16:37:52.333+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371731, + "value":"No", + "question_id":13033, + "created_at":"2017-11-28T13:09:25.684+01:00", + "updated_at":"2017-11-28T13:09:25.684+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":372038, + "value":"Yes", + "question_id":13033, + "created_at":"2017-11-28T16:47:45.671+01:00", + "updated_at":"2017-11-28T16:47:45.671+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372268, + "value":"Yes", + "question_id":13033, + "created_at":"2017-11-29T12:18:19.928+01:00", + "updated_at":"2017-11-29T12:18:19.928+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372440, + "value":"No", + "question_id":13033, + "created_at":"2017-11-29T13:02:14.020+01:00", + "updated_at":"2017-11-29T13:02:14.020+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372600, + "value":"Yes", + "question_id":13033, + "created_at":"2017-11-29T21:37:48.231+01:00", + "updated_at":"2017-11-29T21:37:48.231+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":372805, + "value":"No", + "question_id":13033, + "created_at":"2017-11-30T08:56:11.272+01:00", + "updated_at":"2017-11-30T08:56:11.272+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373303, + "value":"Yes", + "question_id":13033, + "created_at":"2017-12-04T11:22:44.762+01:00", + "updated_at":"2017-12-04T11:22:44.762+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373673, + "value":"No", + "question_id":13033, + "created_at":"2017-12-04T17:54:29.974+01:00", + "updated_at":"2017-12-04T17:54:29.974+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374668, + "value":"", + "question_id":13033, + "created_at":"2017-12-13T09:39:46.112+01:00", + "updated_at":"2017-12-13T09:39:46.112+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375008, + "value":"No", + "question_id":13033, + "created_at":"2017-12-14T14:19:07.210+01:00", + "updated_at":"2017-12-14T14:19:07.210+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375435, + "value":"Yes", + "question_id":13033, + "created_at":"2017-12-28T10:10:24.878+01:00", + "updated_at":"2017-12-28T10:10:24.878+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375718, + "value":"No", + "question_id":13033, + "created_at":"2018-01-18T13:23:59.972+01:00", + "updated_at":"2018-01-18T13:23:59.972+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377455, + "value":"", + "question_id":13033, + "created_at":"2018-04-26T10:04:35.994+02:00", + "updated_at":"2018-04-26T10:04:35.994+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":377456, + "value":"", + "question_id":13033, + "created_at":"2018-04-26T10:04:36.004+02:00", + "updated_at":"2018-04-26T10:04:36.004+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377457, + "value":"", + "question_id":13033, + "created_at":"2018-04-26T10:04:36.009+02:00", + "updated_at":"2018-04-26T10:04:36.009+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":377461, + "value":"", + "question_id":13033, + "created_at":"2018-04-26T10:04:36.044+02:00", + "updated_at":"2018-04-26T10:04:36.044+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377462, + "value":"", + "question_id":13033, + "created_at":"2018-04-26T10:04:36.055+02:00", + "updated_at":"2018-04-26T10:04:36.055+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":377463, + "value":"", + "question_id":13033, + "created_at":"2018-04-26T10:04:36.063+02:00", + "updated_at":"2018-04-26T10:04:36.063+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377464, + "value":"", + "question_id":13033, + "created_at":"2018-04-26T10:04:36.081+02:00", + "updated_at":"2018-04-26T10:04:36.081+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383908, + "value":"Yes", + "question_id":13033, + "created_at":"2017-12-05T15:47:49.319+01:00", + "updated_at":"2017-12-05T15:47:49.319+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618231, + "value":"Yes", + "question_id":13033, + "created_at":"2018-10-28T18:37:39.939+01:00", + "updated_at":"2018-10-28T18:37:39.939+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641560, + "value":"Planned", + "question_id":13033, + "created_at":"2018-10-30T13:55:39.015+01:00", + "updated_at":"2018-10-30T13:55:39.015+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756389, + "value":"Yes", + "question_id":13033, + "created_at":"2018-11-05T14:28:19.641+01:00", + "updated_at":"2018-11-05T14:28:19.641+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":827100, + "value":"Yes", + "question_id":13033, + "created_at":"2019-10-02T17:07:34.393+02:00", + "updated_at":"2019-10-02T17:07:34.393+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":883331, + "value":"Yes", + "question_id":13033, + "created_at":"2019-10-28T11:27:36.994+01:00", + "updated_at":"2019-10-28T11:27:36.994+01:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":1165432, + "value":"Yes", + "question_id":13033, + "created_at":"2019-11-12T20:17:09.526+01:00", + "updated_at":"2019-11-12T20:17:09.526+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377465, + "value":"", + "question_id":13033, + "created_at":"2018-04-26T10:04:36.089+02:00", + "updated_at":"2018-04-26T10:04:36.089+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":1493634, + "value":"Yes", + "question_id":13033, + "created_at":"2020-12-18T14:57:35.391+01:00", + "updated_at":"2020-12-18T14:57:35.391+01:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":1499387, + "value":"Planned", + "question_id":13033, + "created_at":"2021-11-02T15:21:47.352+01:00", + "updated_at":"2021-11-02T15:21:47.352+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1517910, + "value":"Yes", + "question_id":13033, + "created_at":"2022-09-29T14:36:58.464+02:00", + "updated_at":"2022-09-29T14:36:58.464+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"vulnerability-testing", + "title":"Do you offer Vulnerability scanning?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Vulnerability scanning", + "title_detailed":"Vulnerability service that allows users to scan their own IP networks for security holes.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "42":{ + "id":365955, + "value":"Yes", + "question_id":13035, + "created_at":"2017-09-13T14:14:52.156+02:00", + "updated_at":"2017-09-13T14:14:52.156+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":366188, + "value":"Yes", + "question_id":13035, + "created_at":"2017-09-26T09:13:20.415+02:00", + "updated_at":"2017-09-26T09:13:20.415+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366346, + "value":"No", + "question_id":13035, + "created_at":"2017-09-29T13:48:53.254+02:00", + "updated_at":"2017-09-29T13:48:53.254+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366567, + "value":"No", + "question_id":13035, + "created_at":"2017-10-08T09:14:52.142+02:00", + "updated_at":"2017-10-08T09:14:52.142+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":366662, + "value":"Yes", + "question_id":13035, + "created_at":"2017-10-09T11:14:38.402+02:00", + "updated_at":"2017-10-09T11:14:38.402+02:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":366820, + "value":"Yes", + "question_id":13035, + "created_at":"2017-10-10T16:18:38.519+02:00", + "updated_at":"2017-10-10T16:18:38.519+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366904, + "value":"Yes", + "question_id":13035, + "created_at":"2017-10-11T09:39:27.619+02:00", + "updated_at":"2017-10-11T09:39:27.619+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367332, + "value":"Yes", + "question_id":13035, + "created_at":"2017-10-11T21:09:12.506+02:00", + "updated_at":"2017-10-11T21:09:12.506+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367459, + "value":"Yes", + "question_id":13035, + "created_at":"2017-10-17T11:58:07.519+02:00", + "updated_at":"2017-10-17T11:58:07.519+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367933, + "value":"No", + "question_id":13035, + "created_at":"2017-10-24T13:20:16.972+02:00", + "updated_at":"2017-10-24T13:20:16.972+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369074, + "value":"Yes", + "question_id":13035, + "created_at":"2017-11-10T11:04:10.586+01:00", + "updated_at":"2017-11-10T11:04:10.586+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369217, + "value":"Yes", + "question_id":13035, + "created_at":"2017-11-10T15:36:01.094+01:00", + "updated_at":"2017-11-10T15:36:01.094+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369385, + "value":"Yes", + "question_id":13035, + "created_at":"2017-11-11T20:44:47.636+01:00", + "updated_at":"2017-11-11T20:44:47.636+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370204, + "value":"No", + "question_id":13035, + "created_at":"2017-11-23T14:07:27.063+01:00", + "updated_at":"2017-11-23T14:07:27.063+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370758, + "value":"Yes", + "question_id":13035, + "created_at":"2017-11-27T09:34:17.334+01:00", + "updated_at":"2017-11-27T09:34:17.334+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370950, + "value":"No", + "question_id":13035, + "created_at":"2017-11-27T10:39:01.769+01:00", + "updated_at":"2017-11-27T10:39:01.769+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371753, + "value":"Yes", + "question_id":13035, + "created_at":"2017-11-28T13:11:16.073+01:00", + "updated_at":"2017-11-28T13:11:16.073+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372296, + "value":"Yes", + "question_id":13035, + "created_at":"2017-11-29T12:26:10.585+01:00", + "updated_at":"2017-11-29T12:26:10.585+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372620, + "value":"Yes", + "question_id":13035, + "created_at":"2017-11-29T21:41:10.277+01:00", + "updated_at":"2017-11-29T21:41:10.277+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373245, + "value":"Yes", + "question_id":13035, + "created_at":"2017-12-04T11:11:24.038+01:00", + "updated_at":"2017-12-04T11:11:24.038+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":373466, + "value":"No", + "question_id":13035, + "created_at":"2017-12-04T12:41:35.312+01:00", + "updated_at":"2017-12-04T12:41:35.312+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373692, + "value":"Yes", + "question_id":13035, + "created_at":"2017-12-04T17:57:03.135+01:00", + "updated_at":"2017-12-04T17:57:03.135+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374322, + "value":"Yes", + "question_id":13035, + "created_at":"2017-12-06T13:01:53.250+01:00", + "updated_at":"2017-12-06T13:01:53.250+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375025, + "value":"Yes", + "question_id":13035, + "created_at":"2017-12-14T14:20:29.653+01:00", + "updated_at":"2017-12-14T14:20:29.653+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375327, + "value":"Yes", + "question_id":13035, + "created_at":"2017-12-27T14:42:07.961+01:00", + "updated_at":"2017-12-27T14:42:07.961+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375497, + "value":"Yes", + "question_id":13035, + "created_at":"2017-12-28T10:32:41.705+01:00", + "updated_at":"2017-12-28T10:32:41.705+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377976, + "value":"", + "question_id":13035, + "created_at":"2018-04-26T10:04:40.360+02:00", + "updated_at":"2018-04-26T10:04:40.360+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377978, + "value":"", + "question_id":13035, + "created_at":"2018-04-26T10:04:40.381+02:00", + "updated_at":"2018-04-26T10:04:40.381+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":377982, + "value":"", + "question_id":13035, + "created_at":"2018-04-26T10:04:40.420+02:00", + "updated_at":"2018-04-26T10:04:40.420+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":377983, + "value":"", + "question_id":13035, + "created_at":"2018-04-26T10:04:40.429+02:00", + "updated_at":"2018-04-26T10:04:40.429+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377985, + "value":"", + "question_id":13035, + "created_at":"2018-04-26T10:04:40.450+02:00", + "updated_at":"2018-04-26T10:04:40.450+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":377986, + "value":"", + "question_id":13035, + "created_at":"2018-04-26T10:04:40.458+02:00", + "updated_at":"2018-04-26T10:04:40.458+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377987, + "value":"", + "question_id":13035, + "created_at":"2018-04-26T10:04:40.479+02:00", + "updated_at":"2018-04-26T10:04:40.479+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377988, + "value":"", + "question_id":13035, + "created_at":"2018-04-26T10:04:40.489+02:00", + "updated_at":"2018-04-26T10:04:40.489+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":384003, + "value":"Yes", + "question_id":13035, + "created_at":"2017-12-05T15:55:45.619+01:00", + "updated_at":"2017-12-05T15:55:45.619+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618219, + "value":"Yes", + "question_id":13035, + "created_at":"2018-10-28T18:33:17.951+01:00", + "updated_at":"2018-10-28T18:33:17.951+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641553, + "value":"No", + "question_id":13035, + "created_at":"2018-10-30T13:53:02.226+01:00", + "updated_at":"2018-10-30T13:53:02.226+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":999964, + "value":"Yes", + "question_id":13035, + "created_at":"2019-11-03T22:51:20.326+01:00", + "updated_at":"2019-11-03T22:51:20.326+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":1227747, + "value":"Yes", + "question_id":13035, + "created_at":"2019-11-21T09:23:32.336+01:00", + "updated_at":"2019-11-21T09:23:32.336+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":1481999, + "value":"Yes", + "question_id":13035, + "created_at":"2020-11-10T12:23:08.954+01:00", + "updated_at":"2020-11-10T12:23:08.954+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "48":{ + "id":1487910, + "value":"Yes", + "question_id":13035, + "created_at":"2020-11-26T18:05:19.533+01:00", + "updated_at":"2020-11-26T18:05:19.533+01:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":1500368, + "value":"Yes", + "question_id":13035, + "created_at":"2021-11-08T12:30:30.200+01:00", + "updated_at":"2021-11-08T12:30:30.200+01:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":1500498, + "value":"Yes", + "question_id":13035, + "created_at":"2021-11-08T13:21:21.898+01:00", + "updated_at":"2021-11-08T13:21:21.898+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-conferencing", + "title":"Do you offer Web/desktop conferencing", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Web/desktop conferencing", + "title_detailed":"Video conferencing service to desktops and hand-held devices using software.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365631, + "value":"No", + "question_id":13037, + "created_at":"2017-09-06T12:18:33.238+02:00", + "updated_at":"2017-09-06T12:18:33.238+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365690, + "value":"No", + "question_id":13037, + "created_at":"2017-09-07T15:32:42.966+02:00", + "updated_at":"2017-09-07T15:32:42.966+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365918, + "value":"No", + "question_id":13037, + "created_at":"2017-09-13T13:45:39.196+02:00", + "updated_at":"2017-09-13T13:45:39.196+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366362, + "value":"No", + "question_id":13037, + "created_at":"2017-09-29T13:52:14.933+02:00", + "updated_at":"2017-09-29T13:52:14.933+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366885, + "value":"No", + "question_id":13037, + "created_at":"2017-10-11T09:36:18.818+02:00", + "updated_at":"2017-10-11T09:36:18.818+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367482, + "value":"No", + "question_id":13037, + "created_at":"2017-10-17T12:04:50.254+02:00", + "updated_at":"2017-10-17T12:04:50.254+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367752, + "value":"No", + "question_id":13037, + "created_at":"2017-10-23T19:33:40.090+02:00", + "updated_at":"2017-10-23T19:33:40.090+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367955, + "value":"Yes", + "question_id":13037, + "created_at":"2017-10-24T13:27:28.190+02:00", + "updated_at":"2017-10-24T13:27:28.190+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":368196, + "value":"No", + "question_id":13037, + "created_at":"2017-10-30T09:26:56.935+01:00", + "updated_at":"2017-10-30T09:26:56.935+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369240, + "value":"Yes", + "question_id":13037, + "created_at":"2017-11-10T15:39:17.903+01:00", + "updated_at":"2017-11-10T15:39:17.903+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369393, + "value":"No", + "question_id":13037, + "created_at":"2017-11-11T20:47:04.124+01:00", + "updated_at":"2017-11-11T20:47:04.124+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369702, + "value":"No", + "question_id":13037, + "created_at":"2017-11-21T11:43:03.121+01:00", + "updated_at":"2017-11-21T11:43:03.121+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":369905, + "value":"No", + "question_id":13037, + "created_at":"2017-11-21T16:51:55.397+01:00", + "updated_at":"2017-11-21T16:51:55.397+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370230, + "value":"No", + "question_id":13037, + "created_at":"2017-11-23T14:12:31.346+01:00", + "updated_at":"2017-11-23T14:12:31.346+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":370367, + "value":"No", + "question_id":13037, + "created_at":"2017-11-24T16:13:52.900+01:00", + "updated_at":"2017-11-24T16:13:52.900+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370775, + "value":"No", + "question_id":13037, + "created_at":"2017-11-27T09:36:29.803+01:00", + "updated_at":"2017-11-27T09:36:29.803+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371297, + "value":"No", + "question_id":13037, + "created_at":"2017-11-27T14:29:35.793+01:00", + "updated_at":"2017-11-27T14:29:35.793+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371426, + "value":"No", + "question_id":13037, + "created_at":"2017-11-27T14:47:38.721+01:00", + "updated_at":"2017-11-27T14:47:38.721+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371778, + "value":"No", + "question_id":13037, + "created_at":"2017-11-28T13:18:38.745+01:00", + "updated_at":"2017-11-28T13:18:38.745+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372325, + "value":"No", + "question_id":13037, + "created_at":"2017-11-29T12:33:56.771+01:00", + "updated_at":"2017-11-29T12:33:56.771+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372647, + "value":"No", + "question_id":13037, + "created_at":"2017-11-29T21:46:38.177+01:00", + "updated_at":"2017-11-29T21:46:38.177+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372764, + "value":"No", + "question_id":13037, + "created_at":"2017-11-30T08:33:39.211+01:00", + "updated_at":"2017-11-30T08:33:39.211+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373258, + "value":"Yes", + "question_id":13037, + "created_at":"2017-12-04T11:14:55.630+01:00", + "updated_at":"2017-12-04T11:14:55.630+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373711, + "value":"Yes", + "question_id":13037, + "created_at":"2017-12-04T18:00:06.856+01:00", + "updated_at":"2017-12-04T18:00:06.856+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374352, + "value":"No", + "question_id":13037, + "created_at":"2017-12-06T13:14:34.747+01:00", + "updated_at":"2017-12-06T13:14:34.747+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375039, + "value":"Yes", + "question_id":13037, + "created_at":"2017-12-14T14:21:47.029+01:00", + "updated_at":"2017-12-14T14:21:47.029+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375468, + "value":"Yes", + "question_id":13037, + "created_at":"2017-12-28T10:19:56.201+01:00", + "updated_at":"2017-12-28T10:19:56.201+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375905, + "value":"No", + "question_id":13037, + "created_at":"2018-01-23T12:33:26.491+01:00", + "updated_at":"2018-01-23T12:33:26.491+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":378509, + "value":"", + "question_id":13037, + "created_at":"2018-04-26T10:04:45.385+02:00", + "updated_at":"2018-04-26T10:04:45.385+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":378510, + "value":"", + "question_id":13037, + "created_at":"2018-04-26T10:04:45.393+02:00", + "updated_at":"2018-04-26T10:04:45.393+02:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":378511, + "value":"", + "question_id":13037, + "created_at":"2018-04-26T10:04:45.399+02:00", + "updated_at":"2018-04-26T10:04:45.399+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":378512, + "value":"", + "question_id":13037, + "created_at":"2018-04-26T10:04:45.404+02:00", + "updated_at":"2018-04-26T10:04:45.404+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":378514, + "value":"", + "question_id":13037, + "created_at":"2018-04-26T10:04:45.415+02:00", + "updated_at":"2018-04-26T10:04:45.415+02:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":378515, + "value":"", + "question_id":13037, + "created_at":"2018-04-26T10:04:45.421+02:00", + "updated_at":"2018-04-26T10:04:45.421+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":378516, + "value":"", + "question_id":13037, + "created_at":"2018-04-26T10:04:45.433+02:00", + "updated_at":"2018-04-26T10:04:45.433+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":378517, + "value":"", + "question_id":13037, + "created_at":"2018-04-26T10:04:45.437+02:00", + "updated_at":"2018-04-26T10:04:45.437+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":378518, + "value":"", + "question_id":13037, + "created_at":"2018-04-26T10:04:45.448+02:00", + "updated_at":"2018-04-26T10:04:45.448+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":378519, + "value":"", + "question_id":13037, + "created_at":"2018-04-26T10:04:45.454+02:00", + "updated_at":"2018-04-26T10:04:45.454+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":378520, + "value":"", + "question_id":13037, + "created_at":"2018-04-26T10:04:45.465+02:00", + "updated_at":"2018-04-26T10:04:45.465+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":378521, + "value":"", + "question_id":13037, + "created_at":"2018-04-26T10:04:45.472+02:00", + "updated_at":"2018-04-26T10:04:45.472+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":378522, + "value":"", + "question_id":13037, + "created_at":"2018-04-26T10:04:45.477+02:00", + "updated_at":"2018-04-26T10:04:45.477+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":378523, + "value":"", + "question_id":13037, + "created_at":"2018-04-26T10:04:45.484+02:00", + "updated_at":"2018-04-26T10:04:45.484+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383996, + "value":"Yes", + "question_id":13037, + "created_at":"2017-12-06T13:39:06.365+01:00", + "updated_at":"2017-12-06T13:39:06.365+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-design-production", + "title":"Do you offer Web development?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Web development", + "title_detailed":"Web development service provided to NREN users.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365657, + "value":"Yes", + "question_id":13043, + "created_at":"2017-09-06T12:20:17.416+02:00", + "updated_at":"2017-09-06T12:20:17.416+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365728, + "value":"No", + "question_id":13043, + "created_at":"2017-09-07T15:36:06.323+02:00", + "updated_at":"2017-09-07T15:36:06.323+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365939, + "value":"No", + "question_id":13043, + "created_at":"2017-09-13T13:47:17.632+02:00", + "updated_at":"2017-09-13T13:47:17.632+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366386, + "value":"No", + "question_id":13043, + "created_at":"2017-09-29T13:54:46.506+02:00", + "updated_at":"2017-09-29T13:54:46.506+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366784, + "value":"Yes", + "question_id":13043, + "created_at":"2017-10-10T13:23:38.002+02:00", + "updated_at":"2017-10-10T13:23:38.002+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366856, + "value":"No", + "question_id":13043, + "created_at":"2017-10-11T09:33:48.629+02:00", + "updated_at":"2017-10-11T09:33:48.629+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366967, + "value":"Yes", + "question_id":13043, + "created_at":"2017-10-11T10:53:29.981+02:00", + "updated_at":"2017-10-11T10:53:29.981+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367570, + "value":"Yes", + "question_id":13043, + "created_at":"2017-10-17T14:47:58.449+02:00", + "updated_at":"2017-10-17T14:47:58.449+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":367663, + "value":"No", + "question_id":13043, + "created_at":"2017-10-23T12:27:35.941+02:00", + "updated_at":"2017-10-23T12:27:35.941+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367777, + "value":"No", + "question_id":13043, + "created_at":"2017-10-23T19:41:20.277+02:00", + "updated_at":"2017-10-23T19:41:20.277+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367981, + "value":"Yes", + "question_id":13043, + "created_at":"2017-10-24T13:33:49.200+02:00", + "updated_at":"2017-10-24T13:33:49.200+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368575, + "value":"No", + "question_id":13043, + "created_at":"2017-10-31T14:45:33.206+01:00", + "updated_at":"2017-10-31T14:45:33.206+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368959, + "value":"Yes", + "question_id":13043, + "created_at":"2017-11-08T15:56:01.407+01:00", + "updated_at":"2017-11-08T15:56:01.407+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369266, + "value":"Yes", + "question_id":13043, + "created_at":"2017-11-10T15:41:27.304+01:00", + "updated_at":"2017-11-10T15:41:27.304+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":369540, + "value":"Yes", + "question_id":13043, + "created_at":"2017-11-13T20:39:43.522+01:00", + "updated_at":"2017-11-13T20:39:43.522+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370262, + "value":"No", + "question_id":13043, + "created_at":"2017-11-23T14:16:43.274+01:00", + "updated_at":"2017-11-23T14:16:43.274+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370806, + "value":"No", + "question_id":13043, + "created_at":"2017-11-27T09:38:39.888+01:00", + "updated_at":"2017-11-27T09:38:39.888+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371809, + "value":"Yes", + "question_id":13043, + "created_at":"2017-11-28T13:20:23.029+01:00", + "updated_at":"2017-11-28T13:20:23.029+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":371882, + "value":"No", + "question_id":13043, + "created_at":"2017-11-28T15:06:57.237+01:00", + "updated_at":"2017-11-28T15:06:57.237+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372359, + "value":"Yes", + "question_id":13043, + "created_at":"2017-11-29T12:38:58.479+01:00", + "updated_at":"2017-11-29T12:38:58.479+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372671, + "value":"No", + "question_id":13043, + "created_at":"2017-11-29T21:54:13.913+01:00", + "updated_at":"2017-11-29T21:54:13.913+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":372866, + "value":"No", + "question_id":13043, + "created_at":"2017-11-30T13:40:35.236+01:00", + "updated_at":"2017-11-30T13:40:35.236+01:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373268, + "value":"Yes", + "question_id":13043, + "created_at":"2017-12-04T11:16:25.204+01:00", + "updated_at":"2017-12-04T11:16:25.204+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373738, + "value":"Yes", + "question_id":13043, + "created_at":"2017-12-04T18:03:09.050+01:00", + "updated_at":"2017-12-04T18:03:09.050+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374403, + "value":"Yes", + "question_id":13043, + "created_at":"2017-12-06T13:30:56.873+01:00", + "updated_at":"2017-12-06T13:30:56.873+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374719, + "value":"Yes", + "question_id":13043, + "created_at":"2017-12-13T10:23:32.969+01:00", + "updated_at":"2017-12-13T10:23:32.969+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374930, + "value":"Yes", + "question_id":13043, + "created_at":"2017-12-14T12:49:31.582+01:00", + "updated_at":"2017-12-14T12:49:31.582+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375066, + "value":"Yes", + "question_id":13043, + "created_at":"2017-12-14T14:23:34.967+01:00", + "updated_at":"2017-12-14T14:23:34.967+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375492, + "value":"Yes", + "question_id":13043, + "created_at":"2017-12-28T10:24:10.060+01:00", + "updated_at":"2017-12-28T10:24:10.060+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375745, + "value":"No", + "question_id":13043, + "created_at":"2018-01-18T15:41:34.834+01:00", + "updated_at":"2018-01-18T15:41:34.834+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":379783, + "value":"", + "question_id":13043, + "created_at":"2018-04-26T10:04:56.787+02:00", + "updated_at":"2018-04-26T10:04:56.787+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":379784, + "value":"", + "question_id":13043, + "created_at":"2018-04-26T10:04:56.801+02:00", + "updated_at":"2018-04-26T10:04:56.801+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":379785, + "value":"", + "question_id":13043, + "created_at":"2018-04-26T10:04:56.808+02:00", + "updated_at":"2018-04-26T10:04:56.808+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":379791, + "value":"", + "question_id":13043, + "created_at":"2018-04-26T10:04:56.874+02:00", + "updated_at":"2018-04-26T10:04:56.874+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":379792, + "value":"", + "question_id":13043, + "created_at":"2018-04-26T10:04:56.898+02:00", + "updated_at":"2018-04-26T10:04:56.898+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383918, + "value":"Yes", + "question_id":13043, + "created_at":"2017-12-05T16:01:48.039+01:00", + "updated_at":"2017-12-05T16:01:48.039+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618227, + "value":"Yes", + "question_id":13043, + "created_at":"2018-10-28T18:35:22.457+01:00", + "updated_at":"2018-10-28T18:35:22.457+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641556, + "value":"Yes", + "question_id":13043, + "created_at":"2018-10-30T13:54:21.626+01:00", + "updated_at":"2018-10-30T13:54:21.626+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756387, + "value":"No", + "question_id":13043, + "created_at":"2018-11-05T14:27:21.841+01:00", + "updated_at":"2018-11-05T14:27:21.841+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":379793, + "value":"", + "question_id":13043, + "created_at":"2018-04-26T10:04:56.909+02:00", + "updated_at":"2018-04-26T10:04:56.909+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":1494276, + "value":"Yes", + "question_id":13043, + "created_at":"2021-01-14T15:11:11.348+01:00", + "updated_at":"2021-01-14T15:11:11.348+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":1506684, + "value":"No", + "question_id":13043, + "created_at":"2021-11-23T12:47:56.666+01:00", + "updated_at":"2021-11-23T12:47:56.666+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":1512828, + "value":"No", + "question_id":13043, + "created_at":"2021-12-11T18:02:22.261+01:00", + "updated_at":"2021-12-11T18:02:22.261+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-email-hosting", + "title":"Do you offer Web hosting?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Web hosting", + "title_detailed":"Service to provide space on central web servers for users to publish their website.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365650, + "value":"Yes", + "question_id":12911, + "created_at":"2017-09-06T12:19:50.989+02:00", + "updated_at":"2017-09-06T12:19:50.989+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365721, + "value":"Yes", + "question_id":12911, + "created_at":"2017-09-07T15:35:30.780+02:00", + "updated_at":"2017-09-07T15:35:30.780+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365933, + "value":"Yes", + "question_id":12911, + "created_at":"2017-09-13T13:46:47.429+02:00", + "updated_at":"2017-09-13T13:46:47.429+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366379, + "value":"Yes", + "question_id":12911, + "created_at":"2017-09-29T13:53:54.203+02:00", + "updated_at":"2017-09-29T13:53:54.203+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366865, + "value":"Yes", + "question_id":12911, + "created_at":"2017-10-11T09:34:41.961+02:00", + "updated_at":"2017-10-11T09:34:41.961+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366956, + "value":"No", + "question_id":12911, + "created_at":"2017-10-11T10:52:23.200+02:00", + "updated_at":"2017-10-11T10:52:23.200+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367160, + "value":"Yes", + "question_id":12911, + "created_at":"2017-10-11T13:45:48.704+02:00", + "updated_at":"2017-10-11T13:45:48.704+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367518, + "value":"Yes", + "question_id":12911, + "created_at":"2017-10-17T12:09:52.465+02:00", + "updated_at":"2017-10-17T12:09:52.465+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367770, + "value":"Yes", + "question_id":12911, + "created_at":"2017-10-23T19:40:43.858+02:00", + "updated_at":"2017-10-23T19:40:43.858+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367974, + "value":"Yes", + "question_id":12911, + "created_at":"2017-10-24T13:32:24.495+02:00", + "updated_at":"2017-10-24T13:32:24.495+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369259, + "value":"Yes", + "question_id":12911, + "created_at":"2017-11-10T15:40:52.201+01:00", + "updated_at":"2017-11-10T15:40:52.201+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369395, + "value":"Yes", + "question_id":12911, + "created_at":"2017-11-11T20:48:28.546+01:00", + "updated_at":"2017-11-11T20:48:28.546+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":369914, + "value":"Yes", + "question_id":12911, + "created_at":"2017-11-21T16:53:19.968+01:00", + "updated_at":"2017-11-21T16:53:19.968+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370251, + "value":"Yes", + "question_id":12911, + "created_at":"2017-11-23T14:13:51.601+01:00", + "updated_at":"2017-11-23T14:13:51.601+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370799, + "value":"No", + "question_id":12911, + "created_at":"2017-11-27T09:38:12.156+01:00", + "updated_at":"2017-11-27T09:38:12.156+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371247, + "value":"No", + "question_id":12911, + "created_at":"2017-11-27T14:21:21.631+01:00", + "updated_at":"2017-11-27T14:21:21.631+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371800, + "value":"Yes", + "question_id":12911, + "created_at":"2017-11-28T13:19:52.254+01:00", + "updated_at":"2017-11-28T13:19:52.254+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":371876, + "value":"Yes", + "question_id":12911, + "created_at":"2017-11-28T15:04:54.059+01:00", + "updated_at":"2017-11-28T15:04:54.059+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372348, + "value":"Yes", + "question_id":12911, + "created_at":"2017-11-29T12:36:28.838+01:00", + "updated_at":"2017-11-29T12:36:28.838+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372668, + "value":"No", + "question_id":12911, + "created_at":"2017-11-29T21:49:28.680+01:00", + "updated_at":"2017-11-29T21:49:28.680+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372778, + "value":"Yes", + "question_id":12911, + "created_at":"2017-11-30T08:35:22.403+01:00", + "updated_at":"2017-11-30T08:35:22.403+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373272, + "value":"Yes", + "question_id":12911, + "created_at":"2017-12-04T11:16:43.322+01:00", + "updated_at":"2017-12-04T11:16:43.322+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373731, + "value":"Yes", + "question_id":12911, + "created_at":"2017-12-04T18:02:20.465+01:00", + "updated_at":"2017-12-04T18:02:20.465+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374391, + "value":"Yes", + "question_id":12911, + "created_at":"2017-12-06T13:25:55.350+01:00", + "updated_at":"2017-12-06T13:25:55.350+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374708, + "value":"Yes", + "question_id":12911, + "created_at":"2017-12-13T10:21:11.942+01:00", + "updated_at":"2017-12-13T10:21:11.942+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374928, + "value":"Yes", + "question_id":12911, + "created_at":"2017-12-14T12:49:17.628+01:00", + "updated_at":"2017-12-14T12:49:17.628+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375057, + "value":"Yes", + "question_id":12911, + "created_at":"2017-12-14T14:22:58.302+01:00", + "updated_at":"2017-12-14T14:22:58.302+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375486, + "value":"Yes", + "question_id":12911, + "created_at":"2017-12-28T10:23:49.491+01:00", + "updated_at":"2017-12-28T10:23:49.491+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375916, + "value":"Yes", + "question_id":12911, + "created_at":"2018-01-23T12:35:47.585+01:00", + "updated_at":"2018-01-23T12:35:47.585+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":379462, + "value":"", + "question_id":12911, + "created_at":"2018-04-26T10:04:53.978+02:00", + "updated_at":"2018-04-26T10:04:53.978+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":379464, + "value":"", + "question_id":12911, + "created_at":"2018-04-26T10:04:53.995+02:00", + "updated_at":"2018-04-26T10:04:53.995+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":379468, + "value":"", + "question_id":12911, + "created_at":"2018-04-26T10:04:54.030+02:00", + "updated_at":"2018-04-26T10:04:54.030+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":379470, + "value":"", + "question_id":12911, + "created_at":"2018-04-26T10:04:54.047+02:00", + "updated_at":"2018-04-26T10:04:54.047+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":379472, + "value":"", + "question_id":12911, + "created_at":"2018-04-26T10:04:54.074+02:00", + "updated_at":"2018-04-26T10:04:54.074+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":384014, + "value":"Yes", + "question_id":12911, + "created_at":"2017-12-06T13:44:25.227+01:00", + "updated_at":"2017-12-06T13:44:25.227+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618213, + "value":"Yes", + "question_id":12911, + "created_at":"2018-10-28T18:31:01.536+01:00", + "updated_at":"2018-10-28T18:31:01.536+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641547, + "value":"Yes", + "question_id":12911, + "created_at":"2018-10-30T13:50:50.741+01:00", + "updated_at":"2018-10-30T13:50:50.741+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756371, + "value":"Yes", + "question_id":12911, + "created_at":"2018-11-05T14:03:01.191+01:00", + "updated_at":"2018-11-05T14:03:01.191+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":774388, + "value":"Yes", + "question_id":12911, + "created_at":"2018-11-15T12:44:30.182+01:00", + "updated_at":"2018-11-15T12:44:30.182+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":827389, + "value":"Yes", + "question_id":12911, + "created_at":"2019-10-17T09:24:59.761+02:00", + "updated_at":"2019-10-17T09:24:59.761+02:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":379473, + "value":"", + "question_id":12911, + "created_at":"2018-04-26T10:04:54.083+02:00", + "updated_at":"2018-04-26T10:04:54.083+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":1468356, + "value":"Yes", + "question_id":12911, + "created_at":"2020-10-07T17:59:34.230+02:00", + "updated_at":"2020-10-07T17:59:34.230+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":1512827, + "value":"No", + "question_id":12911, + "created_at":"2021-12-11T18:01:02.363+01:00", + "updated_at":"2021-12-11T18:01:02.363+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dns-server", + "title":"Do you offer DNS server hosting/backup?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"DNS hosting", + "title_detailed":"Hosting of primary and secondary DNS servers.", + "tags":[ + "storage and hosting" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365623, + "value":"Yes", + "question_id":12909, + "created_at":"2017-09-06T12:18:08.146+02:00", + "updated_at":"2017-09-06T12:18:08.146+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365913, + "value":"No", + "question_id":12909, + "created_at":"2017-09-13T13:45:22.089+02:00", + "updated_at":"2017-09-13T13:45:22.089+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366893, + "value":"Yes", + "question_id":12909, + "created_at":"2017-10-11T09:36:41.166+02:00", + "updated_at":"2017-10-11T09:36:41.166+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367471, + "value":"No", + "question_id":12909, + "created_at":"2017-10-17T12:03:01.204+02:00", + "updated_at":"2017-10-17T12:03:01.204+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367746, + "value":"No", + "question_id":12909, + "created_at":"2017-10-23T19:33:08.426+02:00", + "updated_at":"2017-10-23T19:33:08.426+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367949, + "value":"No", + "question_id":12909, + "created_at":"2017-10-24T13:26:07.544+02:00", + "updated_at":"2017-10-24T13:26:07.544+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368926, + "value":"Yes", + "question_id":12909, + "created_at":"2017-11-08T15:45:12.739+01:00", + "updated_at":"2017-11-08T15:45:12.739+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369234, + "value":"Yes", + "question_id":12909, + "created_at":"2017-11-10T15:38:46.017+01:00", + "updated_at":"2017-11-10T15:38:46.017+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":369902, + "value":"No", + "question_id":12909, + "created_at":"2017-11-21T16:51:29.023+01:00", + "updated_at":"2017-11-21T16:51:29.023+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370218, + "value":"No", + "question_id":12909, + "created_at":"2017-11-23T14:09:16.198+01:00", + "updated_at":"2017-11-23T14:09:16.198+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":370362, + "value":"No", + "question_id":12909, + "created_at":"2017-11-24T16:13:31.235+01:00", + "updated_at":"2017-11-24T16:13:31.235+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370769, + "value":"No", + "question_id":12909, + "created_at":"2017-11-27T09:36:12.075+01:00", + "updated_at":"2017-11-27T09:36:12.075+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371313, + "value":"No", + "question_id":12909, + "created_at":"2017-11-27T14:30:12.657+01:00", + "updated_at":"2017-11-27T14:30:12.657+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372318, + "value":"No", + "question_id":12909, + "created_at":"2017-11-29T12:32:10.399+01:00", + "updated_at":"2017-11-29T12:32:10.399+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":373182, + "value":"No", + "question_id":12909, + "created_at":"2017-12-01T17:39:14.262+01:00", + "updated_at":"2017-12-01T17:39:14.262+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":373195, + "value":"No", + "question_id":12909, + "created_at":"2017-12-03T13:49:47.539+01:00", + "updated_at":"2017-12-03T13:49:47.539+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373253, + "value":"Yes", + "question_id":12909, + "created_at":"2017-12-04T11:14:24.994+01:00", + "updated_at":"2017-12-04T11:14:24.994+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373704, + "value":"No", + "question_id":12909, + "created_at":"2017-12-04T17:59:25.307+01:00", + "updated_at":"2017-12-04T17:59:25.307+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374344, + "value":"No", + "question_id":12909, + "created_at":"2017-12-06T13:13:18.794+01:00", + "updated_at":"2017-12-06T13:13:18.794+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375033, + "value":"No", + "question_id":12909, + "created_at":"2017-12-14T14:21:28.716+01:00", + "updated_at":"2017-12-14T14:21:28.716+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375463, + "value":"Yes", + "question_id":12909, + "created_at":"2017-12-28T10:19:40.198+01:00", + "updated_at":"2017-12-28T10:19:40.198+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375892, + "value":"Yes", + "question_id":12909, + "created_at":"2018-01-23T12:29:59.687+01:00", + "updated_at":"2018-01-23T12:29:59.687+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":378222, + "value":"", + "question_id":12909, + "created_at":"2018-04-26T10:04:42.614+02:00", + "updated_at":"2018-04-26T10:04:42.614+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":378225, + "value":"", + "question_id":12909, + "created_at":"2018-04-26T10:04:42.643+02:00", + "updated_at":"2018-04-26T10:04:42.643+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":378229, + "value":"", + "question_id":12909, + "created_at":"2018-04-26T10:04:42.685+02:00", + "updated_at":"2018-04-26T10:04:42.685+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":378230, + "value":"", + "question_id":12909, + "created_at":"2018-04-26T10:04:42.693+02:00", + "updated_at":"2018-04-26T10:04:42.693+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":378231, + "value":"", + "question_id":12909, + "created_at":"2018-04-26T10:04:42.708+02:00", + "updated_at":"2018-04-26T10:04:42.708+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":378232, + "value":"", + "question_id":12909, + "created_at":"2018-04-26T10:04:42.716+02:00", + "updated_at":"2018-04-26T10:04:42.716+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":378233, + "value":"", + "question_id":12909, + "created_at":"2018-04-26T10:04:42.738+02:00", + "updated_at":"2018-04-26T10:04:42.738+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":378234, + "value":"", + "question_id":12909, + "created_at":"2018-04-26T10:04:42.745+02:00", + "updated_at":"2018-04-26T10:04:42.745+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":384008, + "value":"Yes", + "question_id":12909, + "created_at":"2017-12-05T15:57:48.811+01:00", + "updated_at":"2017-12-05T15:57:48.811+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618242, + "value":"Yes", + "question_id":12909, + "created_at":"2018-10-28T18:44:49.386+01:00", + "updated_at":"2018-10-28T18:44:49.386+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641570, + "value":"Yes", + "question_id":12909, + "created_at":"2018-10-30T14:01:36.401+01:00", + "updated_at":"2018-10-30T14:01:36.401+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756400, + "value":"Yes", + "question_id":12909, + "created_at":"2018-11-05T14:32:03.373+01:00", + "updated_at":"2018-11-05T14:32:03.373+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":797998, + "value":"Yes", + "question_id":12909, + "created_at":"2018-11-27T19:11:08.306+01:00", + "updated_at":"2018-11-27T19:11:08.306+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":1000938, + "value":"Yes", + "question_id":12909, + "created_at":"2019-11-04T10:58:14.046+01:00", + "updated_at":"2019-11-04T10:58:14.046+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":1116395, + "value":"Yes", + "question_id":12909, + "created_at":"2019-11-08T11:49:53.218+01:00", + "updated_at":"2019-11-08T11:49:53.218+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":1155566, + "value":"Yes", + "question_id":12909, + "created_at":"2019-11-11T14:53:20.009+01:00", + "updated_at":"2019-11-11T14:53:20.009+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":378235, + "value":"", + "question_id":12909, + "created_at":"2018-04-26T10:04:42.756+02:00", + "updated_at":"2018-04-26T10:04:42.756+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":1470697, + "value":"Yes", + "question_id":12909, + "created_at":"2020-10-16T14:52:23.839+02:00", + "updated_at":"2020-10-16T14:52:23.839+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1483364, + "value":"Yes", + "question_id":12909, + "created_at":"2020-11-16T13:49:26.695+01:00", + "updated_at":"2020-11-16T13:49:26.695+01:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":1493635, + "value":"Yes", + "question_id":12909, + "created_at":"2020-12-18T14:58:33.315+01:00", + "updated_at":"2020-12-18T14:58:33.315+01:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":1518287, + "value":"Yes", + "question_id":12909, + "created_at":"2022-10-17T13:54:58.283+02:00", + "updated_at":"2022-10-17T13:54:58.283+02:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"dissemination", + "title":"Do you offer Dissemination services?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Dissemination", + "title_detailed":"Dissemination of information to users e.g. newsletters and magazines.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365564, + "value":"Yes", + "question_id":12983, + "created_at":"2017-09-06T12:11:29.511+02:00", + "updated_at":"2017-09-06T12:11:29.511+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365992, + "value":"Yes", + "question_id":12983, + "created_at":"2017-09-13T14:19:52.086+02:00", + "updated_at":"2017-09-13T14:19:52.086+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":366131, + "value":"Yes", + "question_id":12983, + "created_at":"2017-09-19T14:44:31.860+02:00", + "updated_at":"2017-09-19T14:44:31.860+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366301, + "value":"Yes", + "question_id":12983, + "created_at":"2017-09-29T13:40:42.277+02:00", + "updated_at":"2017-09-29T13:40:42.277+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367082, + "value":"Yes", + "question_id":12983, + "created_at":"2017-10-11T13:18:33.017+02:00", + "updated_at":"2017-10-11T13:18:33.017+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367319, + "value":"Yes", + "question_id":12983, + "created_at":"2017-10-11T20:53:09.290+02:00", + "updated_at":"2017-10-11T20:53:09.290+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367689, + "value":"Yes", + "question_id":12983, + "created_at":"2017-10-23T19:24:33.039+02:00", + "updated_at":"2017-10-23T19:24:33.039+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367880, + "value":"Yes", + "question_id":12983, + "created_at":"2017-10-24T13:02:56.775+02:00", + "updated_at":"2017-10-24T13:02:56.775+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368698, + "value":"Yes", + "question_id":12983, + "created_at":"2017-11-02T13:20:50.515+01:00", + "updated_at":"2017-11-02T13:20:50.515+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369065, + "value":"Yes", + "question_id":12983, + "created_at":"2017-11-10T10:59:42.085+01:00", + "updated_at":"2017-11-10T10:59:42.085+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369172, + "value":"Yes", + "question_id":12983, + "created_at":"2017-11-10T15:30:47.272+01:00", + "updated_at":"2017-11-10T15:30:47.272+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369329, + "value":"Yes", + "question_id":12983, + "created_at":"2017-11-11T20:29:08.193+01:00", + "updated_at":"2017-11-11T20:29:08.193+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370127, + "value":"Yes", + "question_id":12983, + "created_at":"2017-11-23T13:46:28.792+01:00", + "updated_at":"2017-11-23T13:46:28.792+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370916, + "value":"Yes", + "question_id":12983, + "created_at":"2017-11-27T10:34:31.496+01:00", + "updated_at":"2017-11-27T10:34:31.496+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371285, + "value":"Yes", + "question_id":12983, + "created_at":"2017-11-27T14:28:46.153+01:00", + "updated_at":"2017-11-27T14:28:46.153+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371544, + "value":"Yes", + "question_id":12983, + "created_at":"2017-11-27T16:34:18.281+01:00", + "updated_at":"2017-11-27T16:34:18.281+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":371480, + "value":"Yes", + "question_id":12983, + "created_at":"2017-11-27T15:00:38.984+01:00", + "updated_at":"2017-11-27T15:00:38.984+01:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371701, + "value":"Yes", + "question_id":12983, + "created_at":"2017-11-28T13:06:24.040+01:00", + "updated_at":"2017-11-28T13:06:24.040+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":371985, + "value":"Yes", + "question_id":12983, + "created_at":"2017-11-28T16:30:59.288+01:00", + "updated_at":"2017-11-28T16:30:59.288+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":372106, + "value":"Yes", + "question_id":12983, + "created_at":"2017-11-28T17:37:52.761+01:00", + "updated_at":"2017-11-28T17:37:52.761+01:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372227, + "value":"Yes", + "question_id":12983, + "created_at":"2017-11-29T12:01:52.402+01:00", + "updated_at":"2017-11-29T12:01:52.402+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372571, + "value":"Yes", + "question_id":12983, + "created_at":"2017-11-29T21:33:04.511+01:00", + "updated_at":"2017-11-29T21:33:04.511+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373282, + "value":"Yes", + "question_id":12983, + "created_at":"2017-12-04T11:18:37.396+01:00", + "updated_at":"2017-12-04T11:18:37.396+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373643, + "value":"Yes", + "question_id":12983, + "created_at":"2017-12-04T17:51:11.085+01:00", + "updated_at":"2017-12-04T17:51:11.085+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374234, + "value":"Yes", + "question_id":12983, + "created_at":"2017-12-06T11:01:39.455+01:00", + "updated_at":"2017-12-06T11:01:39.455+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374906, + "value":"Yes", + "question_id":12983, + "created_at":"2017-12-14T12:45:10.146+01:00", + "updated_at":"2017-12-14T12:45:10.146+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375397, + "value":"Yes", + "question_id":12983, + "created_at":"2017-12-28T10:01:14.026+01:00", + "updated_at":"2017-12-28T10:01:14.026+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375801, + "value":"Yes", + "question_id":12983, + "created_at":"2018-01-22T00:46:18.065+01:00", + "updated_at":"2018-01-22T00:46:18.065+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":376005, + "value":"Yes", + "question_id":12983, + "created_at":"2018-02-16T09:43:00.162+01:00", + "updated_at":"2018-02-16T09:43:00.162+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":376573, + "value":"", + "question_id":12983, + "created_at":"2018-04-26T10:04:26.273+02:00", + "updated_at":"2018-04-26T10:04:26.273+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":376575, + "value":"", + "question_id":12983, + "created_at":"2018-04-26T10:04:26.296+02:00", + "updated_at":"2018-04-26T10:04:26.296+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":376579, + "value":"", + "question_id":12983, + "created_at":"2018-04-26T10:04:26.343+02:00", + "updated_at":"2018-04-26T10:04:26.343+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":376580, + "value":"", + "question_id":12983, + "created_at":"2018-04-26T10:04:26.351+02:00", + "updated_at":"2018-04-26T10:04:26.351+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":376582, + "value":"", + "question_id":12983, + "created_at":"2018-04-26T10:04:26.388+02:00", + "updated_at":"2018-04-26T10:04:26.388+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":376583, + "value":"", + "question_id":12983, + "created_at":"2018-04-26T10:04:26.415+02:00", + "updated_at":"2018-04-26T10:04:26.415+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383964, + "value":"No", + "question_id":12983, + "created_at":"2017-12-05T15:44:06.658+01:00", + "updated_at":"2017-12-05T15:44:06.658+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618212, + "value":"Planned", + "question_id":12983, + "created_at":"2018-10-28T18:30:41.057+01:00", + "updated_at":"2018-10-28T18:30:41.057+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":618244, + "value":"Yes", + "question_id":12983, + "created_at":"2018-10-29T08:13:54.443+01:00", + "updated_at":"2018-10-29T08:13:54.443+01:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641546, + "value":"Yes", + "question_id":12983, + "created_at":"2018-10-30T13:49:54.193+01:00", + "updated_at":"2018-10-30T13:49:54.193+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756369, + "value":"Yes", + "question_id":12983, + "created_at":"2018-11-05T14:02:39.549+01:00", + "updated_at":"2018-11-05T14:02:39.549+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":774386, + "value":"Yes", + "question_id":12983, + "created_at":"2018-11-15T12:43:52.811+01:00", + "updated_at":"2018-11-15T12:43:52.811+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":1488527, + "value":"Yes", + "question_id":12983, + "created_at":"2020-11-27T09:57:42.824+01:00", + "updated_at":"2020-11-27T09:57:42.824+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":1510379, + "value":"No", + "question_id":12983, + "created_at":"2021-12-02T10:29:12.776+01:00", + "updated_at":"2021-12-02T10:29:12.776+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"network-monitoring", + "title":"Do you offer Network monitoring?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Network monitoring", + "title_detailed":"Network information system that shows the current and past performance of the network.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365557, + "value":"No", + "question_id":12907, + "created_at":"2017-09-06T12:07:57.400+02:00", + "updated_at":"2017-09-06T12:07:57.400+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365867, + "value":"No", + "question_id":12907, + "created_at":"2017-09-13T13:36:52.124+02:00", + "updated_at":"2017-09-13T13:36:52.124+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366908, + "value":"Yes", + "question_id":12907, + "created_at":"2017-10-11T10:40:03.932+02:00", + "updated_at":"2017-10-11T10:40:03.932+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367066, + "value":"No", + "question_id":12907, + "created_at":"2017-10-11T13:05:40.782+02:00", + "updated_at":"2017-10-11T13:05:40.782+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367529, + "value":"Yes", + "question_id":12907, + "created_at":"2017-10-17T14:26:12.481+02:00", + "updated_at":"2017-10-17T14:26:12.481+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367681, + "value":"No", + "question_id":12907, + "created_at":"2017-10-23T19:23:41.865+02:00", + "updated_at":"2017-10-23T19:23:41.865+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367868, + "value":"No", + "question_id":12907, + "created_at":"2017-10-24T12:58:06.224+02:00", + "updated_at":"2017-10-24T12:58:06.224+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":368222, + "value":"No", + "question_id":12907, + "created_at":"2017-10-30T12:38:12.415+01:00", + "updated_at":"2017-10-30T12:38:12.415+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368368, + "value":"Planned", + "question_id":12907, + "created_at":"2017-10-30T21:16:51.981+01:00", + "updated_at":"2017-10-30T21:16:51.981+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368424, + "value":"No", + "question_id":12907, + "created_at":"2017-10-31T14:14:24.788+01:00", + "updated_at":"2017-10-31T14:14:24.788+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368894, + "value":"Planned", + "question_id":12907, + "created_at":"2017-11-08T15:28:08.700+01:00", + "updated_at":"2017-11-08T15:28:08.700+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369163, + "value":"No", + "question_id":12907, + "created_at":"2017-11-10T15:29:09.441+01:00", + "updated_at":"2017-11-10T15:29:09.441+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370115, + "value":"No", + "question_id":12907, + "created_at":"2017-11-23T13:35:11.202+01:00", + "updated_at":"2017-11-23T13:35:11.202+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":370326, + "value":"Yes", + "question_id":12907, + "created_at":"2017-11-24T13:43:39.542+01:00", + "updated_at":"2017-11-24T13:43:39.542+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370696, + "value":"Planned", + "question_id":12907, + "created_at":"2017-11-27T09:28:50.336+01:00", + "updated_at":"2017-11-27T09:28:50.336+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370907, + "value":"No", + "question_id":12907, + "created_at":"2017-11-27T10:33:01.940+01:00", + "updated_at":"2017-11-27T10:33:01.940+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371098, + "value":"No", + "question_id":12907, + "created_at":"2017-11-27T13:43:49.638+01:00", + "updated_at":"2017-11-27T13:43:49.638+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371691, + "value":"Yes", + "question_id":12907, + "created_at":"2017-11-28T13:05:08.182+01:00", + "updated_at":"2017-11-28T13:05:08.182+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372210, + "value":"Yes", + "question_id":12907, + "created_at":"2017-11-29T11:56:19.254+01:00", + "updated_at":"2017-11-29T11:56:19.254+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372562, + "value":"No", + "question_id":12907, + "created_at":"2017-11-29T21:31:05.488+01:00", + "updated_at":"2017-11-29T21:31:05.488+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373632, + "value":"No", + "question_id":12907, + "created_at":"2017-12-04T17:48:36.500+01:00", + "updated_at":"2017-12-04T17:48:36.500+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374215, + "value":"No", + "question_id":12907, + "created_at":"2017-12-06T10:52:23.595+01:00", + "updated_at":"2017-12-06T10:52:23.595+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374641, + "value":"Planned", + "question_id":12907, + "created_at":"2017-12-13T07:43:13.293+01:00", + "updated_at":"2017-12-13T07:43:13.293+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374649, + "value":"No", + "question_id":12907, + "created_at":"2017-12-13T09:28:44.912+01:00", + "updated_at":"2017-12-13T09:28:44.912+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":374966, + "value":"No", + "question_id":12907, + "created_at":"2017-12-14T14:13:48.433+01:00", + "updated_at":"2017-12-14T14:13:48.433+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375388, + "value":"No", + "question_id":12907, + "created_at":"2017-12-28T10:00:21.516+01:00", + "updated_at":"2017-12-28T10:00:21.516+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":376182, + "value":"", + "question_id":12907, + "created_at":"2018-04-26T10:04:21.543+02:00", + "updated_at":"2018-04-26T10:04:21.543+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":376178, + "value":"", + "question_id":12907, + "created_at":"2018-04-26T10:04:21.512+02:00", + "updated_at":"2018-04-26T10:04:21.512+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":376179, + "value":"", + "question_id":12907, + "created_at":"2018-04-26T10:04:21.523+02:00", + "updated_at":"2018-04-26T10:04:21.523+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":376180, + "value":"", + "question_id":12907, + "created_at":"2018-04-26T10:04:21.528+02:00", + "updated_at":"2018-04-26T10:04:21.528+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":376183, + "value":"", + "question_id":12907, + "created_at":"2018-04-26T10:04:21.551+02:00", + "updated_at":"2018-04-26T10:04:21.551+02:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":376184, + "value":"", + "question_id":12907, + "created_at":"2018-04-26T10:04:21.565+02:00", + "updated_at":"2018-04-26T10:04:21.565+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":376185, + "value":"", + "question_id":12907, + "created_at":"2018-04-26T10:04:21.572+02:00", + "updated_at":"2018-04-26T10:04:21.572+02:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":376186, + "value":"", + "question_id":12907, + "created_at":"2018-04-26T10:04:21.581+02:00", + "updated_at":"2018-04-26T10:04:21.581+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":376187, + "value":"", + "question_id":12907, + "created_at":"2018-04-26T10:04:21.588+02:00", + "updated_at":"2018-04-26T10:04:21.588+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":376188, + "value":"", + "question_id":12907, + "created_at":"2018-04-26T10:04:21.595+02:00", + "updated_at":"2018-04-26T10:04:21.595+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":376189, + "value":"", + "question_id":12907, + "created_at":"2018-04-26T10:04:21.608+02:00", + "updated_at":"2018-04-26T10:04:21.608+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":376190, + "value":"", + "question_id":12907, + "created_at":"2018-04-26T10:04:21.617+02:00", + "updated_at":"2018-04-26T10:04:21.617+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383941, + "value":"Yes", + "question_id":12907, + "created_at":"2017-12-06T13:15:52.310+01:00", + "updated_at":"2017-12-06T13:15:52.310+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":371473, + "value":"No", + "question_id":12907, + "created_at":"2017-11-27T14:59:30.198+01:00", + "updated_at":"2017-11-27T14:59:30.198+01:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":1493639, + "value":"Planned", + "question_id":12907, + "created_at":"2020-12-18T15:03:13.628+01:00", + "updated_at":"2020-12-18T15:03:13.628+01:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":1501640, + "value":"Yes", + "question_id":12907, + "created_at":"2021-11-12T09:21:02.204+01:00", + "updated_at":"2021-11-12T09:21:02.204+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1517914, + "value":"Yes", + "question_id":12907, + "created_at":"2022-09-29T14:44:32.075+02:00", + "updated_at":"2022-09-29T14:44:32.075+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"disaster-recovery", + "title":"Do you offer disaster recovery?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Disaster recovery", + "title_detailed":"Off site backup services.", + "tags":[ + "storage and hosting", + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "41":{ + "id":365868, + "value":"No", + "question_id":12923, + "created_at":"2017-09-13T13:36:56.995+02:00", + "updated_at":"2017-09-13T13:36:56.995+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":366117, + "value":"Yes", + "question_id":12923, + "created_at":"2017-09-19T14:35:18.753+02:00", + "updated_at":"2017-09-19T14:35:18.753+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366291, + "value":"Yes", + "question_id":12923, + "created_at":"2017-09-29T13:38:08.150+02:00", + "updated_at":"2017-09-29T13:38:08.150+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366910, + "value":"No", + "question_id":12923, + "created_at":"2017-10-11T10:41:11.883+02:00", + "updated_at":"2017-10-11T10:41:11.883+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367067, + "value":"Yes", + "question_id":12923, + "created_at":"2017-10-11T13:07:43.350+02:00", + "updated_at":"2017-10-11T13:07:43.350+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367869, + "value":"Yes", + "question_id":12923, + "created_at":"2017-10-24T12:58:15.245+02:00", + "updated_at":"2017-10-24T12:58:15.245+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368371, + "value":"Yes", + "question_id":12923, + "created_at":"2017-10-31T08:57:46.108+01:00", + "updated_at":"2017-10-31T08:57:46.108+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368425, + "value":"No", + "question_id":12923, + "created_at":"2017-10-31T14:14:35.135+01:00", + "updated_at":"2017-10-31T14:14:35.135+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":368623, + "value":"Yes", + "question_id":12923, + "created_at":"2017-11-02T11:31:18.470+01:00", + "updated_at":"2017-11-02T11:31:18.470+01:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368682, + "value":"Yes", + "question_id":12923, + "created_at":"2017-11-02T13:20:08.026+01:00", + "updated_at":"2017-11-02T13:20:08.026+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370116, + "value":"No", + "question_id":12923, + "created_at":"2017-11-23T13:35:17.409+01:00", + "updated_at":"2017-11-23T13:35:17.409+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370697, + "value":"Planned", + "question_id":12923, + "created_at":"2017-11-27T09:28:58.213+01:00", + "updated_at":"2017-11-27T09:28:58.213+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370908, + "value":"Yes", + "question_id":12923, + "created_at":"2017-11-27T10:33:09.174+01:00", + "updated_at":"2017-11-27T10:33:09.174+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371184, + "value":"No", + "question_id":12923, + "created_at":"2017-11-27T14:16:24.435+01:00", + "updated_at":"2017-11-27T14:16:24.435+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371692, + "value":"No", + "question_id":12923, + "created_at":"2017-11-28T13:05:15.483+01:00", + "updated_at":"2017-11-28T13:05:15.483+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":371962, + "value":"No", + "question_id":12923, + "created_at":"2017-11-28T16:24:08.539+01:00", + "updated_at":"2017-11-28T16:24:08.539+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372212, + "value":"No", + "question_id":12923, + "created_at":"2017-11-29T11:57:04.069+01:00", + "updated_at":"2017-11-29T11:57:04.069+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372563, + "value":"Yes", + "question_id":12923, + "created_at":"2017-11-29T21:31:24.992+01:00", + "updated_at":"2017-11-29T21:31:24.992+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373633, + "value":"Yes", + "question_id":12923, + "created_at":"2017-12-04T17:48:44.604+01:00", + "updated_at":"2017-12-04T17:48:44.604+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374027, + "value":"Planned", + "question_id":12923, + "created_at":"2017-12-06T06:51:27.113+01:00", + "updated_at":"2017-12-06T06:51:27.113+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374216, + "value":"Yes", + "question_id":12923, + "created_at":"2017-12-06T10:52:43.225+01:00", + "updated_at":"2017-12-06T10:52:43.225+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374900, + "value":"Yes", + "question_id":12923, + "created_at":"2017-12-14T12:44:33.170+01:00", + "updated_at":"2017-12-14T12:44:33.170+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375344, + "value":"Yes", + "question_id":12923, + "created_at":"2017-12-27T14:47:51.039+01:00", + "updated_at":"2017-12-27T14:47:51.039+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375389, + "value":"No", + "question_id":12923, + "created_at":"2017-12-28T10:00:29.662+01:00", + "updated_at":"2017-12-28T10:00:29.662+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375785, + "value":"Yes", + "question_id":12923, + "created_at":"2018-01-22T00:37:40.224+01:00", + "updated_at":"2018-01-22T00:37:40.224+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":376004, + "value":"Yes", + "question_id":12923, + "created_at":"2018-02-16T09:42:26.889+01:00", + "updated_at":"2018-02-16T09:42:26.889+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":376225, + "value":"", + "question_id":12923, + "created_at":"2018-04-26T10:04:21.961+02:00", + "updated_at":"2018-04-26T10:04:21.961+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":376228, + "value":"", + "question_id":12923, + "created_at":"2018-04-26T10:04:21.988+02:00", + "updated_at":"2018-04-26T10:04:21.988+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":376232, + "value":"", + "question_id":12923, + "created_at":"2018-04-26T10:04:22.024+02:00", + "updated_at":"2018-04-26T10:04:22.024+02:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":376233, + "value":"", + "question_id":12923, + "created_at":"2018-04-26T10:04:22.039+02:00", + "updated_at":"2018-04-26T10:04:22.039+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":376235, + "value":"", + "question_id":12923, + "created_at":"2018-04-26T10:04:22.059+02:00", + "updated_at":"2018-04-26T10:04:22.059+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":376238, + "value":"", + "question_id":12923, + "created_at":"2018-04-26T10:04:22.101+02:00", + "updated_at":"2018-04-26T10:04:22.101+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383897, + "value":"Yes", + "question_id":12923, + "created_at":"2017-12-06T13:16:14.836+01:00", + "updated_at":"2017-12-06T13:16:14.836+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618229, + "value":"Yes", + "question_id":12923, + "created_at":"2018-10-28T18:35:55.015+01:00", + "updated_at":"2018-10-28T18:35:55.015+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641558, + "value":"Yes", + "question_id":12923, + "created_at":"2018-10-30T13:55:09.282+01:00", + "updated_at":"2018-10-30T13:55:09.282+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756381, + "value":"Yes", + "question_id":12923, + "created_at":"2018-11-05T14:06:06.622+01:00", + "updated_at":"2018-11-05T14:06:06.622+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":963601, + "value":"No", + "question_id":12923, + "created_at":"2019-10-30T12:46:09.300+01:00", + "updated_at":"2019-10-30T12:46:09.300+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":1037049, + "value":"Yes", + "question_id":12923, + "created_at":"2019-11-04T16:43:26.546+01:00", + "updated_at":"2019-11-04T16:43:26.546+01:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "48":{ + "id":1131004, + "value":"Yes", + "question_id":12923, + "created_at":"2019-11-08T19:35:11.302+01:00", + "updated_at":"2019-11-08T19:35:11.302+01:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":371475, + "value":"Yes", + "question_id":12923, + "created_at":"2017-11-27T14:59:44.671+01:00", + "updated_at":"2017-11-27T14:59:44.671+01:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":1470694, + "value":"Yes", + "question_id":12923, + "created_at":"2020-10-16T13:58:38.487+02:00", + "updated_at":"2020-10-16T13:58:38.487+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":1482001, + "value":"Yes", + "question_id":12923, + "created_at":"2020-11-10T12:24:04.086+01:00", + "updated_at":"2020-11-10T12:24:04.086+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":1499388, + "value":"Yes", + "question_id":12923, + "created_at":"2021-11-02T15:24:41.192+01:00", + "updated_at":"2021-11-02T15:24:41.192+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-monitoring", + "title":"Do you offer End user monitoring/troubleshooting tool?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Network troubleshooting", + "title_detailed":"Enables users at connected institutions to monitor Internet services in real time.", + "tags":[ + "network", + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365563, + "value":"Yes", + "question_id":12977, + "created_at":"2017-09-06T12:11:21.480+02:00", + "updated_at":"2017-09-06T12:11:21.480+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365995, + "value":"Yes", + "question_id":12977, + "created_at":"2017-09-13T14:19:58.139+02:00", + "updated_at":"2017-09-13T14:19:58.139+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367081, + "value":"Yes", + "question_id":12977, + "created_at":"2017-10-11T13:18:17.329+02:00", + "updated_at":"2017-10-11T13:18:17.329+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367179, + "value":"Yes", + "question_id":12977, + "created_at":"2017-10-11T14:02:16.797+02:00", + "updated_at":"2017-10-11T14:02:16.797+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367688, + "value":"Yes", + "question_id":12977, + "created_at":"2017-10-23T19:24:26.435+02:00", + "updated_at":"2017-10-23T19:24:26.435+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367878, + "value":"Yes", + "question_id":12977, + "created_at":"2017-10-24T13:02:13.697+02:00", + "updated_at":"2017-10-24T13:02:13.697+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368427, + "value":"Yes", + "question_id":12977, + "created_at":"2017-10-31T14:15:26.127+01:00", + "updated_at":"2017-10-31T14:15:26.127+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368695, + "value":"Yes", + "question_id":12977, + "created_at":"2017-11-02T13:20:43.079+01:00", + "updated_at":"2017-11-02T13:20:43.079+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369169, + "value":"Yes", + "question_id":12977, + "created_at":"2017-11-10T15:29:55.483+01:00", + "updated_at":"2017-11-10T15:29:55.483+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369323, + "value":"No", + "question_id":12977, + "created_at":"2017-11-11T20:27:12.165+01:00", + "updated_at":"2017-11-11T20:27:12.165+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370124, + "value":"No", + "question_id":12977, + "created_at":"2017-11-23T13:41:02.180+01:00", + "updated_at":"2017-11-23T13:41:02.180+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370914, + "value":"No", + "question_id":12977, + "created_at":"2017-11-27T10:34:17.424+01:00", + "updated_at":"2017-11-27T10:34:17.424+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371542, + "value":"No", + "question_id":12977, + "created_at":"2017-11-27T16:34:06.788+01:00", + "updated_at":"2017-11-27T16:34:06.788+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371699, + "value":"Yes", + "question_id":12977, + "created_at":"2017-11-28T13:06:17.458+01:00", + "updated_at":"2017-11-28T13:06:17.458+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":371975, + "value":"Yes", + "question_id":12977, + "created_at":"2017-11-28T16:27:44.614+01:00", + "updated_at":"2017-11-28T16:27:44.614+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372223, + "value":"Yes", + "question_id":12977, + "created_at":"2017-11-29T12:00:36.460+01:00", + "updated_at":"2017-11-29T12:00:36.460+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373281, + "value":"Yes", + "question_id":12977, + "created_at":"2017-12-04T11:18:29.750+01:00", + "updated_at":"2017-12-04T11:18:29.750+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373641, + "value":"Yes", + "question_id":12977, + "created_at":"2017-12-04T17:50:57.697+01:00", + "updated_at":"2017-12-04T17:50:57.697+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":374975, + "value":"No", + "question_id":12977, + "created_at":"2017-12-14T14:16:58.996+01:00", + "updated_at":"2017-12-14T14:16:58.996+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375353, + "value":"No", + "question_id":12977, + "created_at":"2017-12-27T14:50:35.569+01:00", + "updated_at":"2017-12-27T14:50:35.569+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375396, + "value":"Yes", + "question_id":12977, + "created_at":"2017-12-28T10:01:05.535+01:00", + "updated_at":"2017-12-28T10:01:05.535+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375798, + "value":"Yes", + "question_id":12977, + "created_at":"2018-01-22T00:45:47.631+01:00", + "updated_at":"2018-01-22T00:45:47.631+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":376476, + "value":"", + "question_id":12977, + "created_at":"2018-04-26T10:04:25.100+02:00", + "updated_at":"2018-04-26T10:04:25.100+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":376478, + "value":"", + "question_id":12977, + "created_at":"2018-04-26T10:04:25.124+02:00", + "updated_at":"2018-04-26T10:04:25.124+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":376482, + "value":"", + "question_id":12977, + "created_at":"2018-04-26T10:04:25.174+02:00", + "updated_at":"2018-04-26T10:04:25.174+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":376483, + "value":"", + "question_id":12977, + "created_at":"2018-04-26T10:04:25.182+02:00", + "updated_at":"2018-04-26T10:04:25.182+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":376485, + "value":"", + "question_id":12977, + "created_at":"2018-04-26T10:04:25.206+02:00", + "updated_at":"2018-04-26T10:04:25.206+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":376486, + "value":"", + "question_id":12977, + "created_at":"2018-04-26T10:04:25.217+02:00", + "updated_at":"2018-04-26T10:04:25.217+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":376487, + "value":"", + "question_id":12977, + "created_at":"2018-04-26T10:04:25.226+02:00", + "updated_at":"2018-04-26T10:04:25.226+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":376488, + "value":"", + "question_id":12977, + "created_at":"2018-04-26T10:04:25.242+02:00", + "updated_at":"2018-04-26T10:04:25.242+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":376489, + "value":"", + "question_id":12977, + "created_at":"2018-04-26T10:04:25.256+02:00", + "updated_at":"2018-04-26T10:04:25.256+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":379859, + "value":"No", + "question_id":12977, + "created_at":"2018-06-27T13:28:00.062+02:00", + "updated_at":"2018-06-27T13:28:00.062+02:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383886, + "value":"No", + "question_id":12977, + "created_at":"2017-12-06T13:20:37.662+01:00", + "updated_at":"2017-12-06T13:20:37.662+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618234, + "value":"Yes", + "question_id":12977, + "created_at":"2018-10-28T18:39:02.938+01:00", + "updated_at":"2018-10-28T18:39:02.938+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641562, + "value":"Yes", + "question_id":12977, + "created_at":"2018-10-30T13:57:06.267+01:00", + "updated_at":"2018-10-30T13:57:06.267+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756390, + "value":"Yes", + "question_id":12977, + "created_at":"2018-11-05T14:28:35.508+01:00", + "updated_at":"2018-11-05T14:28:35.508+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":756849, + "value":"Yes", + "question_id":12977, + "created_at":"2018-11-07T15:36:15.905+01:00", + "updated_at":"2018-11-07T15:36:15.905+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":827388, + "value":"Yes", + "question_id":12977, + "created_at":"2019-10-17T09:22:09.517+02:00", + "updated_at":"2019-10-17T09:22:09.517+02:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":376490, + "value":"", + "question_id":12977, + "created_at":"2018-04-26T10:04:25.267+02:00", + "updated_at":"2018-04-26T10:04:25.267+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":1481995, + "value":"Yes", + "question_id":12977, + "created_at":"2020-11-10T10:51:47.007+01:00", + "updated_at":"2020-11-10T10:51:47.007+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":1488525, + "value":"Yes", + "question_id":12977, + "created_at":"2020-11-27T09:55:26.489+01:00", + "updated_at":"2020-11-27T09:55:26.489+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":1493633, + "value":"Planned", + "question_id":12977, + "created_at":"2020-12-18T14:57:08.660+01:00", + "updated_at":"2020-12-18T14:57:08.660+01:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":1500313, + "value":"Yes", + "question_id":12977, + "created_at":"2021-11-04T15:24:17.330+01:00", + "updated_at":"2021-11-04T15:24:17.330+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"netflow", + "title":"Do you offer Netflow?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Netflow tool", + "title_detailed":"Network protocol for collecting IP traffic information and monitoring network traffic.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365561, + "value":"Yes", + "question_id":12967, + "created_at":"2017-09-06T12:11:17.097+02:00", + "updated_at":"2017-09-06T12:11:17.097+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366297, + "value":"No", + "question_id":12967, + "created_at":"2017-09-29T13:40:18.584+02:00", + "updated_at":"2017-09-29T13:40:18.584+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367077, + "value":"No", + "question_id":12967, + "created_at":"2017-10-11T13:17:54.506+02:00", + "updated_at":"2017-10-11T13:17:54.506+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367175, + "value":"No", + "question_id":12967, + "created_at":"2017-10-11T14:01:01.375+02:00", + "updated_at":"2017-10-11T14:01:01.375+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367317, + "value":"Yes", + "question_id":12967, + "created_at":"2017-10-11T20:52:44.972+02:00", + "updated_at":"2017-10-11T20:52:44.972+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367686, + "value":"Yes", + "question_id":12967, + "created_at":"2017-10-23T19:24:14.497+02:00", + "updated_at":"2017-10-23T19:24:14.497+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367875, + "value":"Yes", + "question_id":12967, + "created_at":"2017-10-24T13:01:24.711+02:00", + "updated_at":"2017-10-24T13:01:24.711+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368691, + "value":"Yes", + "question_id":12967, + "created_at":"2017-11-02T13:20:35.760+01:00", + "updated_at":"2017-11-02T13:20:35.760+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368849, + "value":"Yes", + "question_id":12967, + "created_at":"2017-11-08T10:56:19.589+01:00", + "updated_at":"2017-11-08T10:56:19.589+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369167, + "value":"Yes", + "question_id":12967, + "created_at":"2017-11-10T15:29:44.827+01:00", + "updated_at":"2017-11-10T15:29:44.827+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369320, + "value":"No", + "question_id":12967, + "created_at":"2017-11-11T20:26:41.019+01:00", + "updated_at":"2017-11-11T20:26:41.019+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370122, + "value":"No", + "question_id":12967, + "created_at":"2017-11-23T13:40:23.972+01:00", + "updated_at":"2017-11-23T13:40:23.972+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370701, + "value":"No", + "question_id":12967, + "created_at":"2017-11-27T09:29:28.398+01:00", + "updated_at":"2017-11-27T09:29:28.398+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370912, + "value":"Yes", + "question_id":12967, + "created_at":"2017-11-27T10:34:07.178+01:00", + "updated_at":"2017-11-27T10:34:07.178+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371103, + "value":"No", + "question_id":12967, + "created_at":"2017-11-27T13:44:42.328+01:00", + "updated_at":"2017-11-27T13:44:42.328+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371540, + "value":"No", + "question_id":12967, + "created_at":"2017-11-27T16:33:51.190+01:00", + "updated_at":"2017-11-27T16:33:51.190+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371697, + "value":"No", + "question_id":12967, + "created_at":"2017-11-28T13:06:07.456+01:00", + "updated_at":"2017-11-28T13:06:07.456+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":371968, + "value":"No", + "question_id":12967, + "created_at":"2017-11-28T16:26:02.010+01:00", + "updated_at":"2017-11-28T16:26:02.010+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":372104, + "value":"Yes", + "question_id":12967, + "created_at":"2017-11-28T17:35:43.088+01:00", + "updated_at":"2017-11-28T17:35:43.088+01:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372220, + "value":"No", + "question_id":12967, + "created_at":"2017-11-29T12:00:11.216+01:00", + "updated_at":"2017-11-29T12:00:11.216+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372567, + "value":"No", + "question_id":12967, + "created_at":"2017-11-29T21:32:33.810+01:00", + "updated_at":"2017-11-29T21:32:33.810+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373639, + "value":"Yes", + "question_id":12967, + "created_at":"2017-12-04T17:50:43.655+01:00", + "updated_at":"2017-12-04T17:50:43.655+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374031, + "value":"Planned", + "question_id":12967, + "created_at":"2017-12-06T06:56:32.960+01:00", + "updated_at":"2017-12-06T06:56:32.960+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374904, + "value":"No", + "question_id":12967, + "created_at":"2017-12-14T12:44:58.221+01:00", + "updated_at":"2017-12-14T12:44:58.221+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":374972, + "value":"No", + "question_id":12967, + "created_at":"2017-12-14T14:16:30.861+01:00", + "updated_at":"2017-12-14T14:16:30.861+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375349, + "value":"Yes", + "question_id":12967, + "created_at":"2017-12-27T14:49:05.013+01:00", + "updated_at":"2017-12-27T14:49:05.013+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375395, + "value":"No", + "question_id":12967, + "created_at":"2017-12-28T10:01:01.341+01:00", + "updated_at":"2017-12-28T10:01:01.341+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375795, + "value":"No", + "question_id":12967, + "created_at":"2018-01-22T00:45:19.760+01:00", + "updated_at":"2018-01-22T00:45:19.760+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":376386, + "value":"", + "question_id":12967, + "created_at":"2018-04-26T10:04:23.950+02:00", + "updated_at":"2018-04-26T10:04:23.950+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":376388, + "value":"", + "question_id":12967, + "created_at":"2018-04-26T10:04:23.970+02:00", + "updated_at":"2018-04-26T10:04:23.970+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":376391, + "value":"", + "question_id":12967, + "created_at":"2018-04-26T10:04:23.993+02:00", + "updated_at":"2018-04-26T10:04:23.993+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":376392, + "value":"", + "question_id":12967, + "created_at":"2018-04-26T10:04:24.010+02:00", + "updated_at":"2018-04-26T10:04:24.010+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":376393, + "value":"", + "question_id":12967, + "created_at":"2018-04-26T10:04:24.017+02:00", + "updated_at":"2018-04-26T10:04:24.017+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":376395, + "value":"", + "question_id":12967, + "created_at":"2018-04-26T10:04:24.036+02:00", + "updated_at":"2018-04-26T10:04:24.036+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":376396, + "value":"", + "question_id":12967, + "created_at":"2018-04-26T10:04:24.046+02:00", + "updated_at":"2018-04-26T10:04:24.046+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":376397, + "value":"", + "question_id":12967, + "created_at":"2018-04-26T10:04:24.068+02:00", + "updated_at":"2018-04-26T10:04:24.068+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383887, + "value":"No", + "question_id":12967, + "created_at":"2017-12-05T15:43:47.838+01:00", + "updated_at":"2017-12-05T15:43:47.838+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641569, + "value":"Planned", + "question_id":12967, + "created_at":"2018-10-30T14:00:22.177+01:00", + "updated_at":"2018-10-30T14:00:22.177+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756397, + "value":"Yes", + "question_id":12967, + "created_at":"2018-11-05T14:30:48.437+01:00", + "updated_at":"2018-11-05T14:30:48.437+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":1116397, + "value":"Yes", + "question_id":12967, + "created_at":"2019-11-08T11:51:15.002+01:00", + "updated_at":"2019-11-08T11:51:15.002+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":1165435, + "value":"Yes", + "question_id":12967, + "created_at":"2019-11-12T20:19:36.737+01:00", + "updated_at":"2019-11-12T20:19:36.737+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":376398, + "value":"", + "question_id":12967, + "created_at":"2018-04-26T10:04:24.079+02:00", + "updated_at":"2018-04-26T10:04:24.079+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1508465, + "value":"Planned", + "question_id":12967, + "created_at":"2021-11-25T10:31:55.877+01:00", + "updated_at":"2021-11-25T10:31:55.877+01:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"managed-router", + "title":"Do you offer managed router service?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Managed router service", + "title_detailed":"Remote network router support to institutions.", + "tags":[ + "network" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "41":{ + "id":366174, + "value":"Planned", + "question_id":12951, + "created_at":"2017-09-26T09:08:57.588+02:00", + "updated_at":"2017-09-26T09:08:57.588+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366749, + "value":"Yes", + "question_id":12951, + "created_at":"2017-10-10T12:52:59.878+02:00", + "updated_at":"2017-10-10T12:52:59.878+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366925, + "value":"Yes", + "question_id":12951, + "created_at":"2017-10-11T10:43:47.064+02:00", + "updated_at":"2017-10-11T10:43:47.064+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367215, + "value":"Yes", + "question_id":12951, + "created_at":"2017-10-11T14:12:10.585+02:00", + "updated_at":"2017-10-11T14:12:10.585+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367328, + "value":"Yes", + "question_id":12951, + "created_at":"2017-10-11T21:03:21.563+02:00", + "updated_at":"2017-10-11T21:03:21.563+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":367647, + "value":"No", + "question_id":12951, + "created_at":"2017-10-23T12:21:50.794+02:00", + "updated_at":"2017-10-23T12:21:50.794+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367708, + "value":"Yes", + "question_id":12951, + "created_at":"2017-10-23T19:26:31.899+02:00", + "updated_at":"2017-10-23T19:26:31.899+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367907, + "value":"Yes", + "question_id":12951, + "created_at":"2017-10-24T13:11:17.653+02:00", + "updated_at":"2017-10-24T13:11:17.653+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368723, + "value":"No", + "question_id":12951, + "created_at":"2017-11-02T13:23:32.535+01:00", + "updated_at":"2017-11-02T13:23:32.535+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369195, + "value":"No", + "question_id":12951, + "created_at":"2017-11-10T15:33:25.612+01:00", + "updated_at":"2017-11-10T15:33:25.612+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369362, + "value":"No", + "question_id":12951, + "created_at":"2017-11-11T20:36:22.235+01:00", + "updated_at":"2017-11-11T20:36:22.235+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370165, + "value":"No", + "question_id":12951, + "created_at":"2017-11-23T13:54:59.083+01:00", + "updated_at":"2017-11-23T13:54:59.083+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370732, + "value":"Planned", + "question_id":12951, + "created_at":"2017-11-27T09:32:24.633+01:00", + "updated_at":"2017-11-27T09:32:24.633+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370934, + "value":"No", + "question_id":12951, + "created_at":"2017-11-27T10:37:24.334+01:00", + "updated_at":"2017-11-27T10:37:24.334+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371346, + "value":"Yes", + "question_id":12951, + "created_at":"2017-11-27T14:34:00.882+01:00", + "updated_at":"2017-11-27T14:34:00.882+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":372034, + "value":"Yes", + "question_id":12951, + "created_at":"2017-11-28T16:47:25.244+01:00", + "updated_at":"2017-11-28T16:47:25.244+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372263, + "value":"No", + "question_id":12951, + "created_at":"2017-11-29T12:17:43.747+01:00", + "updated_at":"2017-11-29T12:17:43.747+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373669, + "value":"Yes", + "question_id":12951, + "created_at":"2017-12-04T17:54:01.733+01:00", + "updated_at":"2017-12-04T17:54:01.733+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":373785, + "value":"Yes", + "question_id":12951, + "created_at":"2017-12-04T19:13:56.647+01:00", + "updated_at":"2017-12-04T19:13:56.647+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374038, + "value":"Planned", + "question_id":12951, + "created_at":"2017-12-06T06:57:40.616+01:00", + "updated_at":"2017-12-06T06:57:40.616+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374265, + "value":"No", + "question_id":12951, + "created_at":"2017-12-06T11:13:46.322+01:00", + "updated_at":"2017-12-06T11:13:46.322+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374664, + "value":"No", + "question_id":12951, + "created_at":"2017-12-13T09:39:19.269+01:00", + "updated_at":"2017-12-13T09:39:19.269+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375438, + "value":"Yes", + "question_id":12951, + "created_at":"2017-12-28T10:10:51.035+01:00", + "updated_at":"2017-12-28T10:10:51.035+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375714, + "value":"No", + "question_id":12951, + "created_at":"2018-01-18T13:23:09.179+01:00", + "updated_at":"2018-01-18T13:23:09.179+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":376010, + "value":"Yes", + "question_id":12951, + "created_at":"2018-02-16T09:44:58.950+01:00", + "updated_at":"2018-02-16T09:44:58.950+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377259, + "value":"", + "question_id":12951, + "created_at":"2018-04-26T10:04:33.987+02:00", + "updated_at":"2018-04-26T10:04:33.987+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":377261, + "value":"", + "question_id":12951, + "created_at":"2018-04-26T10:04:34.007+02:00", + "updated_at":"2018-04-26T10:04:34.007+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377262, + "value":"", + "question_id":12951, + "created_at":"2018-04-26T10:04:34.015+02:00", + "updated_at":"2018-04-26T10:04:34.015+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":377265, + "value":"", + "question_id":12951, + "created_at":"2018-04-26T10:04:34.039+02:00", + "updated_at":"2018-04-26T10:04:34.039+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":377266, + "value":"", + "question_id":12951, + "created_at":"2018-04-26T10:04:34.048+02:00", + "updated_at":"2018-04-26T10:04:34.048+02:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":377267, + "value":"", + "question_id":12951, + "created_at":"2018-04-26T10:04:34.067+02:00", + "updated_at":"2018-04-26T10:04:34.067+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377268, + "value":"", + "question_id":12951, + "created_at":"2018-04-26T10:04:34.082+02:00", + "updated_at":"2018-04-26T10:04:34.082+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":377269, + "value":"", + "question_id":12951, + "created_at":"2018-04-26T10:04:34.091+02:00", + "updated_at":"2018-04-26T10:04:34.091+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":377270, + "value":"", + "question_id":12951, + "created_at":"2018-04-26T10:04:34.111+02:00", + "updated_at":"2018-04-26T10:04:34.111+02:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377271, + "value":"", + "question_id":12951, + "created_at":"2018-04-26T10:04:34.122+02:00", + "updated_at":"2018-04-26T10:04:34.122+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756395, + "value":"Yes", + "question_id":12951, + "created_at":"2018-11-05T14:30:16.417+01:00", + "updated_at":"2018-11-05T14:30:16.417+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377272, + "value":"", + "question_id":12951, + "created_at":"2018-04-26T10:04:34.132+02:00", + "updated_at":"2018-04-26T10:04:34.132+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":1487869, + "value":"No", + "question_id":12951, + "created_at":"2020-11-26T17:37:28.180+01:00", + "updated_at":"2020-11-26T17:37:28.180+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "48":{ + "id":1487911, + "value":"Planned", + "question_id":12951, + "created_at":"2020-11-26T18:06:29.838+01:00", + "updated_at":"2020-11-26T18:06:29.838+01:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":1493636, + "value":"Planned", + "question_id":12951, + "created_at":"2020-12-18T14:59:37.902+01:00", + "updated_at":"2020-12-18T14:59:37.902+01:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1517909, + "value":"Yes", + "question_id":12951, + "created_at":"2022-09-29T14:36:27.517+02:00", + "updated_at":"2022-09-29T14:36:27.517+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":1518026, + "value":"No", + "question_id":12951, + "created_at":"2022-10-10T14:45:55.684+02:00", + "updated_at":"2022-10-10T14:45:55.684+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"intrusion", + "title":"Do you offer Intrusion detection and prevention?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Intrusion detection", + "title_detailed":"Systems for detecting and preventing Intrusions (IDS/IPS).", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365583, + "value":"No", + "question_id":13005, + "created_at":"2017-09-06T12:13:52.269+02:00", + "updated_at":"2017-09-06T12:13:52.269+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":366175, + "value":"Planned", + "question_id":13005, + "created_at":"2017-09-26T09:09:11.734+02:00", + "updated_at":"2017-09-26T09:09:11.734+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366325, + "value":"No", + "question_id":13005, + "created_at":"2017-09-29T13:44:35.663+02:00", + "updated_at":"2017-09-29T13:44:35.663+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366752, + "value":"No", + "question_id":13005, + "created_at":"2017-10-10T12:53:40.120+02:00", + "updated_at":"2017-10-10T12:53:40.120+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366929, + "value":"No", + "question_id":13005, + "created_at":"2017-10-11T10:44:44.565+02:00", + "updated_at":"2017-10-11T10:44:44.565+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367329, + "value":"Yes", + "question_id":13005, + "created_at":"2017-10-11T21:03:31.956+02:00", + "updated_at":"2017-10-11T21:03:31.956+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367629, + "value":"Yes", + "question_id":13005, + "created_at":"2017-10-23T11:49:42.754+02:00", + "updated_at":"2017-10-23T11:49:42.754+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":367648, + "value":"Yes", + "question_id":13005, + "created_at":"2017-10-23T12:22:39.969+02:00", + "updated_at":"2017-10-23T12:22:39.969+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367711, + "value":"No", + "question_id":13005, + "created_at":"2017-10-23T19:26:47.585+02:00", + "updated_at":"2017-10-23T19:26:47.585+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367910, + "value":"No", + "question_id":13005, + "created_at":"2017-10-24T13:13:33.029+02:00", + "updated_at":"2017-10-24T13:13:33.029+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":368160, + "value":"No", + "question_id":13005, + "created_at":"2017-10-30T09:19:58.499+01:00", + "updated_at":"2017-10-30T09:19:58.499+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368726, + "value":"No", + "question_id":13005, + "created_at":"2017-11-02T13:23:40.500+01:00", + "updated_at":"2017-11-02T13:23:40.500+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368800, + "value":"No", + "question_id":13005, + "created_at":"2017-11-06T16:12:56.497+01:00", + "updated_at":"2017-11-06T16:12:56.497+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369198, + "value":"No", + "question_id":13005, + "created_at":"2017-11-10T15:33:43.681+01:00", + "updated_at":"2017-11-10T15:33:43.681+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369368, + "value":"Yes", + "question_id":13005, + "created_at":"2017-11-11T20:39:48.865+01:00", + "updated_at":"2017-11-11T20:39:48.865+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370168, + "value":"No", + "question_id":13005, + "created_at":"2017-11-23T13:55:09.941+01:00", + "updated_at":"2017-11-23T13:55:09.941+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370735, + "value":"No", + "question_id":13005, + "created_at":"2017-11-27T09:32:36.655+01:00", + "updated_at":"2017-11-27T09:32:36.655+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370936, + "value":"Planned", + "question_id":13005, + "created_at":"2017-11-27T10:37:34.001+01:00", + "updated_at":"2017-11-27T10:37:34.001+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371354, + "value":"No", + "question_id":13005, + "created_at":"2017-11-27T14:34:51.575+01:00", + "updated_at":"2017-11-27T14:34:51.575+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371561, + "value":"No", + "question_id":13005, + "created_at":"2017-11-27T16:37:46.240+01:00", + "updated_at":"2017-11-27T16:37:46.240+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371730, + "value":"No", + "question_id":13005, + "created_at":"2017-11-28T13:09:22.888+01:00", + "updated_at":"2017-11-28T13:09:22.888+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372266, + "value":"Yes", + "question_id":13005, + "created_at":"2017-11-29T12:18:01.187+01:00", + "updated_at":"2017-11-29T12:18:01.187+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372599, + "value":"No", + "question_id":13005, + "created_at":"2017-11-29T21:37:43.955+01:00", + "updated_at":"2017-11-29T21:37:43.955+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373302, + "value":"No", + "question_id":13005, + "created_at":"2017-12-04T11:22:38.833+01:00", + "updated_at":"2017-12-04T11:22:38.833+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373672, + "value":"No", + "question_id":13005, + "created_at":"2017-12-04T17:54:19.613+01:00", + "updated_at":"2017-12-04T17:54:19.613+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374269, + "value":"No", + "question_id":13005, + "created_at":"2017-12-06T11:14:43.752+01:00", + "updated_at":"2017-12-06T11:14:43.752+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374666, + "value":"No", + "question_id":13005, + "created_at":"2017-12-13T09:39:35.679+01:00", + "updated_at":"2017-12-13T09:39:35.679+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375424, + "value":"Yes", + "question_id":13005, + "created_at":"2017-12-28T10:07:20.965+01:00", + "updated_at":"2017-12-28T10:07:20.965+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375717, + "value":"No", + "question_id":13005, + "created_at":"2018-01-18T13:23:55.231+01:00", + "updated_at":"2018-01-18T13:23:55.231+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":376044, + "value":"Yes", + "question_id":13005, + "created_at":"2018-02-16T11:24:48.283+01:00", + "updated_at":"2018-02-16T11:24:48.283+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377409, + "value":"", + "question_id":13005, + "created_at":"2018-04-26T10:04:35.603+02:00", + "updated_at":"2018-04-26T10:04:35.603+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":377410, + "value":"", + "question_id":13005, + "created_at":"2018-04-26T10:04:35.614+02:00", + "updated_at":"2018-04-26T10:04:35.614+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377411, + "value":"", + "question_id":13005, + "created_at":"2018-04-26T10:04:35.620+02:00", + "updated_at":"2018-04-26T10:04:35.620+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":377414, + "value":"", + "question_id":13005, + "created_at":"2018-04-26T10:04:35.639+02:00", + "updated_at":"2018-04-26T10:04:35.639+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":377415, + "value":"", + "question_id":13005, + "created_at":"2018-04-26T10:04:35.654+02:00", + "updated_at":"2018-04-26T10:04:35.654+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377416, + "value":"", + "question_id":13005, + "created_at":"2018-04-26T10:04:35.666+02:00", + "updated_at":"2018-04-26T10:04:35.666+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":377417, + "value":"", + "question_id":13005, + "created_at":"2018-04-26T10:04:35.673+02:00", + "updated_at":"2018-04-26T10:04:35.673+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377418, + "value":"", + "question_id":13005, + "created_at":"2018-04-26T10:04:35.691+02:00", + "updated_at":"2018-04-26T10:04:35.691+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383904, + "value":"No", + "question_id":13005, + "created_at":"2017-12-05T15:51:59.512+01:00", + "updated_at":"2017-12-05T15:51:59.512+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756403, + "value":"Yes", + "question_id":13005, + "created_at":"2018-11-05T14:32:58.399+01:00", + "updated_at":"2018-11-05T14:32:58.399+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":756830, + "value":"Yes", + "question_id":13005, + "created_at":"2018-11-07T12:38:26.023+01:00", + "updated_at":"2018-11-07T12:38:26.023+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377419, + "value":"", + "question_id":13005, + "created_at":"2018-04-26T10:04:35.700+02:00", + "updated_at":"2018-04-26T10:04:35.700+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1517907, + "value":"Yes", + "question_id":13005, + "created_at":"2022-09-29T14:35:09.674+02:00", + "updated_at":"2022-09-29T14:35:09.674+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"security-audit", + "title":"Do you offer Security auditing?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Security auditing", + "title_detailed":"Carrying out vulnerability assesments and security reviews of user systems and resources on their behalf.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365586, + "value":"Yes", + "question_id":13041, + "created_at":"2017-09-06T12:14:03.110+02:00", + "updated_at":"2017-09-06T12:14:03.110+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365896, + "value":"No", + "question_id":13041, + "created_at":"2017-09-13T13:42:37.300+02:00", + "updated_at":"2017-09-13T13:42:37.300+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366333, + "value":"Yes", + "question_id":13041, + "created_at":"2017-09-29T13:46:23.016+02:00", + "updated_at":"2017-09-29T13:46:23.016+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366613, + "value":"Yes", + "question_id":13041, + "created_at":"2017-10-08T09:22:08.622+02:00", + "updated_at":"2017-10-08T09:22:08.622+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366753, + "value":"Yes", + "question_id":13041, + "created_at":"2017-10-10T12:54:05.193+02:00", + "updated_at":"2017-10-10T12:54:05.193+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367635, + "value":"No", + "question_id":13041, + "created_at":"2017-10-23T11:50:29.944+02:00", + "updated_at":"2017-10-23T11:50:29.944+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367713, + "value":"No", + "question_id":13041, + "created_at":"2017-10-23T19:26:56.964+02:00", + "updated_at":"2017-10-23T19:26:56.964+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367913, + "value":"Yes", + "question_id":13041, + "created_at":"2017-10-24T13:14:36.849+02:00", + "updated_at":"2017-10-24T13:14:36.849+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":368162, + "value":"No", + "question_id":13041, + "created_at":"2017-10-30T09:20:04.294+01:00", + "updated_at":"2017-10-30T09:20:04.294+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368390, + "value":"No", + "question_id":13041, + "created_at":"2017-10-31T13:04:25.240+01:00", + "updated_at":"2017-10-31T13:04:25.240+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368728, + "value":"No", + "question_id":13041, + "created_at":"2017-11-02T13:23:46.233+01:00", + "updated_at":"2017-11-02T13:23:46.233+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369370, + "value":"No", + "question_id":13041, + "created_at":"2017-11-11T20:40:56.409+01:00", + "updated_at":"2017-11-11T20:40:56.409+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370170, + "value":"No", + "question_id":13041, + "created_at":"2017-11-23T13:56:17.066+01:00", + "updated_at":"2017-11-23T13:56:17.066+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370737, + "value":"No", + "question_id":13041, + "created_at":"2017-11-27T09:32:41.300+01:00", + "updated_at":"2017-11-27T09:32:41.300+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370938, + "value":"Yes", + "question_id":13041, + "created_at":"2017-11-27T10:37:48.617+01:00", + "updated_at":"2017-11-27T10:37:48.617+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371110, + "value":"No", + "question_id":13041, + "created_at":"2017-11-27T13:46:14.050+01:00", + "updated_at":"2017-11-27T13:46:14.050+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371563, + "value":"No", + "question_id":13041, + "created_at":"2017-11-27T16:37:57.273+01:00", + "updated_at":"2017-11-27T16:37:57.273+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371732, + "value":"No", + "question_id":13041, + "created_at":"2017-11-28T13:09:27.462+01:00", + "updated_at":"2017-11-28T13:09:27.462+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":372039, + "value":"No", + "question_id":13041, + "created_at":"2017-11-28T16:47:54.266+01:00", + "updated_at":"2017-11-28T16:47:54.266+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372270, + "value":"Yes", + "question_id":13041, + "created_at":"2017-11-29T12:19:04.530+01:00", + "updated_at":"2017-11-29T12:19:04.530+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372441, + "value":"No", + "question_id":13041, + "created_at":"2017-11-29T13:02:19.761+01:00", + "updated_at":"2017-11-29T13:02:19.761+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372601, + "value":"No", + "question_id":13041, + "created_at":"2017-11-29T21:37:55.510+01:00", + "updated_at":"2017-11-29T21:37:55.510+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373674, + "value":"No", + "question_id":13041, + "created_at":"2017-12-04T17:54:33.165+01:00", + "updated_at":"2017-12-04T17:54:33.165+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374039, + "value":"No", + "question_id":13041, + "created_at":"2017-12-06T06:57:54.680+01:00", + "updated_at":"2017-12-06T06:57:54.680+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374271, + "value":"No", + "question_id":13041, + "created_at":"2017-12-06T11:15:02.815+01:00", + "updated_at":"2017-12-06T11:15:02.815+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374669, + "value":"No", + "question_id":13041, + "created_at":"2017-12-13T09:39:54.711+01:00", + "updated_at":"2017-12-13T09:39:54.711+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375009, + "value":"No", + "question_id":13041, + "created_at":"2017-12-14T14:19:09.844+01:00", + "updated_at":"2017-12-14T14:19:09.844+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375436, + "value":"Yes", + "question_id":13041, + "created_at":"2017-12-28T10:10:26.413+01:00", + "updated_at":"2017-12-28T10:10:26.413+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377494, + "value":"", + "question_id":13041, + "created_at":"2018-04-26T10:04:36.339+02:00", + "updated_at":"2018-04-26T10:04:36.339+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":377495, + "value":"", + "question_id":13041, + "created_at":"2018-04-26T10:04:36.349+02:00", + "updated_at":"2018-04-26T10:04:36.349+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377496, + "value":"", + "question_id":13041, + "created_at":"2018-04-26T10:04:36.355+02:00", + "updated_at":"2018-04-26T10:04:36.355+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":377499, + "value":"", + "question_id":13041, + "created_at":"2018-04-26T10:04:36.371+02:00", + "updated_at":"2018-04-26T10:04:36.371+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":377500, + "value":"", + "question_id":13041, + "created_at":"2018-04-26T10:04:36.385+02:00", + "updated_at":"2018-04-26T10:04:36.385+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377501, + "value":"", + "question_id":13041, + "created_at":"2018-04-26T10:04:36.395+02:00", + "updated_at":"2018-04-26T10:04:36.395+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":377502, + "value":"", + "question_id":13041, + "created_at":"2018-04-26T10:04:36.402+02:00", + "updated_at":"2018-04-26T10:04:36.402+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377504, + "value":"", + "question_id":13041, + "created_at":"2018-04-26T10:04:36.422+02:00", + "updated_at":"2018-04-26T10:04:36.422+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":384002, + "value":"Yes", + "question_id":13041, + "created_at":"2017-12-05T15:47:54.461+01:00", + "updated_at":"2017-12-05T15:47:54.461+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":826844, + "value":"Yes", + "question_id":13041, + "created_at":"2019-09-17T09:47:13.361+02:00", + "updated_at":"2019-09-17T09:47:13.361+02:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":827098, + "value":"Yes", + "question_id":13041, + "created_at":"2019-10-02T17:05:30.852+02:00", + "updated_at":"2019-10-02T17:05:30.852+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377505, + "value":"", + "question_id":13041, + "created_at":"2018-04-26T10:04:36.429+02:00", + "updated_at":"2018-04-26T10:04:36.429+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":1502660, + "value":"Planned", + "question_id":13041, + "created_at":"2021-11-16T00:43:17.727+01:00", + "updated_at":"2021-11-16T00:43:17.727+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":1509994, + "value":"Yes", + "question_id":13041, + "created_at":"2021-11-29T17:16:36.050+01:00", + "updated_at":"2021-11-29T17:16:36.050+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1517908, + "value":"Yes", + "question_id":13041, + "created_at":"2022-09-29T14:35:37.494+02:00", + "updated_at":"2022-09-29T14:35:37.494+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"web-filtering", + "title":"Do you offer Web filtering?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Web filtering", + "title_detailed":"Centralised web content filtering service for protection against access to inappropriate content.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365584, + "value":"No", + "question_id":12993, + "created_at":"2017-09-06T12:13:54.454+02:00", + "updated_at":"2017-09-06T12:13:54.454+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365797, + "value":"No", + "question_id":12993, + "created_at":"2017-09-07T15:51:13.689+02:00", + "updated_at":"2017-09-07T15:51:13.689+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365895, + "value":"No", + "question_id":12993, + "created_at":"2017-09-13T13:42:27.491+02:00", + "updated_at":"2017-09-13T13:42:27.491+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366324, + "value":"No", + "question_id":12993, + "created_at":"2017-09-29T13:44:32.616+02:00", + "updated_at":"2017-09-29T13:44:32.616+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366751, + "value":"No", + "question_id":12993, + "created_at":"2017-10-10T12:53:22.442+02:00", + "updated_at":"2017-10-10T12:53:22.442+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366928, + "value":"No", + "question_id":12993, + "created_at":"2017-10-11T10:44:21.462+02:00", + "updated_at":"2017-10-11T10:44:21.462+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367626, + "value":"No", + "question_id":12993, + "created_at":"2017-10-23T11:49:27.972+02:00", + "updated_at":"2017-10-23T11:49:27.972+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367710, + "value":"No", + "question_id":12993, + "created_at":"2017-10-23T19:26:44.084+02:00", + "updated_at":"2017-10-23T19:26:44.084+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367911, + "value":"No", + "question_id":12993, + "created_at":"2017-10-24T13:14:02.490+02:00", + "updated_at":"2017-10-24T13:14:02.490+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":368159, + "value":"No", + "question_id":12993, + "created_at":"2017-10-30T09:19:56.227+01:00", + "updated_at":"2017-10-30T09:19:56.227+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368725, + "value":"No", + "question_id":12993, + "created_at":"2017-11-02T13:23:37.666+01:00", + "updated_at":"2017-11-02T13:23:37.666+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368753, + "value":"No", + "question_id":12993, + "created_at":"2017-11-03T14:32:10.925+01:00", + "updated_at":"2017-11-03T14:32:10.925+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369197, + "value":"Yes", + "question_id":12993, + "created_at":"2017-11-10T15:33:39.556+01:00", + "updated_at":"2017-11-10T15:33:39.556+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369366, + "value":"Yes", + "question_id":12993, + "created_at":"2017-11-11T20:36:52.947+01:00", + "updated_at":"2017-11-11T20:36:52.947+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370167, + "value":"No", + "question_id":12993, + "created_at":"2017-11-23T13:55:06.307+01:00", + "updated_at":"2017-11-23T13:55:06.307+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370734, + "value":"No", + "question_id":12993, + "created_at":"2017-11-27T09:32:33.128+01:00", + "updated_at":"2017-11-27T09:32:33.128+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371353, + "value":"No", + "question_id":12993, + "created_at":"2017-11-27T14:34:47.727+01:00", + "updated_at":"2017-11-27T14:34:47.727+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371560, + "value":"No", + "question_id":12993, + "created_at":"2017-11-27T16:37:42.071+01:00", + "updated_at":"2017-11-27T16:37:42.071+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371729, + "value":"No", + "question_id":12993, + "created_at":"2017-11-28T13:09:19.541+01:00", + "updated_at":"2017-11-28T13:09:19.541+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":371863, + "value":"No", + "question_id":12993, + "created_at":"2017-11-28T14:56:03.380+01:00", + "updated_at":"2017-11-28T14:56:03.380+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372265, + "value":"No", + "question_id":12993, + "created_at":"2017-11-29T12:17:57.607+01:00", + "updated_at":"2017-11-29T12:17:57.607+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372450, + "value":"No", + "question_id":12993, + "created_at":"2017-11-29T13:07:12.550+01:00", + "updated_at":"2017-11-29T13:07:12.550+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":372537, + "value":"No", + "question_id":12993, + "created_at":"2017-11-29T20:28:56.169+01:00", + "updated_at":"2017-11-29T20:28:56.169+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372598, + "value":"No", + "question_id":12993, + "created_at":"2017-11-29T21:37:36.718+01:00", + "updated_at":"2017-11-29T21:37:36.718+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373301, + "value":"No", + "question_id":12993, + "created_at":"2017-12-04T11:22:35.794+01:00", + "updated_at":"2017-12-04T11:22:35.794+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373671, + "value":"Yes", + "question_id":12993, + "created_at":"2017-12-04T17:54:14.779+01:00", + "updated_at":"2017-12-04T17:54:14.779+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374268, + "value":"No", + "question_id":12993, + "created_at":"2017-12-06T11:14:31.337+01:00", + "updated_at":"2017-12-06T11:14:31.337+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374665, + "value":"No", + "question_id":12993, + "created_at":"2017-12-13T09:39:30.291+01:00", + "updated_at":"2017-12-13T09:39:30.291+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375006, + "value":"No", + "question_id":12993, + "created_at":"2017-12-14T14:19:01.896+01:00", + "updated_at":"2017-12-14T14:19:01.896+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375437, + "value":"Yes", + "question_id":12993, + "created_at":"2017-12-28T10:10:31.994+01:00", + "updated_at":"2017-12-28T10:10:31.994+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375715, + "value":"Yes", + "question_id":12993, + "created_at":"2018-01-18T13:23:18.937+01:00", + "updated_at":"2018-01-18T13:23:18.937+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377359, + "value":"", + "question_id":12993, + "created_at":"2018-04-26T10:04:35.088+02:00", + "updated_at":"2018-04-26T10:04:35.088+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":377360, + "value":"", + "question_id":12993, + "created_at":"2018-04-26T10:04:35.102+02:00", + "updated_at":"2018-04-26T10:04:35.102+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377361, + "value":"", + "question_id":12993, + "created_at":"2018-04-26T10:04:35.109+02:00", + "updated_at":"2018-04-26T10:04:35.109+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":377363, + "value":"", + "question_id":12993, + "created_at":"2018-04-26T10:04:35.124+02:00", + "updated_at":"2018-04-26T10:04:35.124+02:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":377364, + "value":"", + "question_id":12993, + "created_at":"2018-04-26T10:04:35.133+02:00", + "updated_at":"2018-04-26T10:04:35.133+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":377365, + "value":"", + "question_id":12993, + "created_at":"2018-04-26T10:04:35.153+02:00", + "updated_at":"2018-04-26T10:04:35.153+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377366, + "value":"", + "question_id":12993, + "created_at":"2018-04-26T10:04:35.168+02:00", + "updated_at":"2018-04-26T10:04:35.168+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":377367, + "value":"", + "question_id":12993, + "created_at":"2018-04-26T10:04:35.177+02:00", + "updated_at":"2018-04-26T10:04:35.177+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":377368, + "value":"", + "question_id":12993, + "created_at":"2018-04-26T10:04:35.193+02:00", + "updated_at":"2018-04-26T10:04:35.193+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377369, + "value":"", + "question_id":12993, + "created_at":"2018-04-26T10:04:35.205+02:00", + "updated_at":"2018-04-26T10:04:35.205+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383969, + "value":"No", + "question_id":12993, + "created_at":"2017-12-05T15:47:39.358+01:00", + "updated_at":"2017-12-05T15:47:39.358+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377370, + "value":"", + "question_id":12993, + "created_at":"2018-04-26T10:04:35.215+02:00", + "updated_at":"2018-04-26T10:04:35.215+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"PGP-key", + "title":"Do you provide PGP server key?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"PGP key server", + "title_detailed":"Operation of PGP key server.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "16":{ + "id":366151, + "value":"Yes", + "question_id":12943, + "created_at":"2017-09-19T14:56:24.923+02:00", + "updated_at":"2017-09-19T14:56:24.923+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366320, + "value":"No", + "question_id":12943, + "created_at":"2017-09-29T13:44:03.204+02:00", + "updated_at":"2017-09-29T13:44:03.204+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366922, + "value":"Yes", + "question_id":12943, + "created_at":"2017-10-11T10:43:17.372+02:00", + "updated_at":"2017-10-11T10:43:17.372+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":367138, + "value":"No", + "question_id":12943, + "created_at":"2017-10-11T13:31:20.638+02:00", + "updated_at":"2017-10-11T13:31:20.638+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367905, + "value":"No", + "question_id":12943, + "created_at":"2017-10-24T13:10:52.451+02:00", + "updated_at":"2017-10-24T13:10:52.451+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368720, + "value":"Yes", + "question_id":12943, + "created_at":"2017-11-02T13:23:22.216+01:00", + "updated_at":"2017-11-02T13:23:22.216+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":368795, + "value":"No", + "question_id":12943, + "created_at":"2017-11-06T16:09:23.722+01:00", + "updated_at":"2017-11-06T16:09:23.722+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369359, + "value":"Yes", + "question_id":12943, + "created_at":"2017-11-11T20:35:51.208+01:00", + "updated_at":"2017-11-11T20:35:51.208+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370161, + "value":"No", + "question_id":12943, + "created_at":"2017-11-23T13:53:46.373+01:00", + "updated_at":"2017-11-23T13:53:46.373+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":370353, + "value":"No", + "question_id":12943, + "created_at":"2017-11-24T16:11:25.031+01:00", + "updated_at":"2017-11-24T16:11:25.031+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370729, + "value":"No", + "question_id":12943, + "created_at":"2017-11-27T09:32:12.945+01:00", + "updated_at":"2017-11-27T09:32:12.945+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370932, + "value":"Yes", + "question_id":12943, + "created_at":"2017-11-27T10:36:57.541+01:00", + "updated_at":"2017-11-27T10:36:57.541+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372473, + "value":"No", + "question_id":12943, + "created_at":"2017-11-29T16:06:31.643+01:00", + "updated_at":"2017-11-29T16:06:31.643+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":372798, + "value":"Yes", + "question_id":12943, + "created_at":"2017-11-30T08:49:25.863+01:00", + "updated_at":"2017-11-30T08:49:25.863+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":372883, + "value":"Yes", + "question_id":12943, + "created_at":"2017-11-30T14:20:05.067+01:00", + "updated_at":"2017-11-30T14:20:05.067+01:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373298, + "value":"Yes", + "question_id":12943, + "created_at":"2017-12-04T11:22:14.572+01:00", + "updated_at":"2017-12-04T11:22:14.572+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373667, + "value":"Yes", + "question_id":12943, + "created_at":"2017-12-04T17:53:40.860+01:00", + "updated_at":"2017-12-04T17:53:40.860+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":373782, + "value":"Yes", + "question_id":12943, + "created_at":"2017-12-04T19:13:07.859+01:00", + "updated_at":"2017-12-04T19:13:07.859+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":373816, + "value":"Yes", + "question_id":12943, + "created_at":"2017-12-05T09:47:08.573+01:00", + "updated_at":"2017-12-05T09:47:08.573+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374262, + "value":"No", + "question_id":12943, + "created_at":"2017-12-06T11:13:07.068+01:00", + "updated_at":"2017-12-06T11:13:07.068+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374659, + "value":"Yes", + "question_id":12943, + "created_at":"2017-12-13T09:37:59.039+01:00", + "updated_at":"2017-12-13T09:37:59.039+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375002, + "value":"No", + "question_id":12943, + "created_at":"2017-12-14T14:18:51.095+01:00", + "updated_at":"2017-12-14T14:18:51.095+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375494, + "value":"No", + "question_id":12943, + "created_at":"2017-12-28T10:30:59.119+01:00", + "updated_at":"2017-12-28T10:30:59.119+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377168, + "value":"", + "question_id":12943, + "created_at":"2018-04-26T10:04:32.909+02:00", + "updated_at":"2018-04-26T10:04:32.909+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "48":{ + "id":377169, + "value":"", + "question_id":12943, + "created_at":"2018-04-26T10:04:32.918+02:00", + "updated_at":"2018-04-26T10:04:32.918+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377171, + "value":"", + "question_id":12943, + "created_at":"2018-04-26T10:04:32.933+02:00", + "updated_at":"2018-04-26T10:04:32.933+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":377174, + "value":"", + "question_id":12943, + "created_at":"2018-04-26T10:04:32.955+02:00", + "updated_at":"2018-04-26T10:04:32.955+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":377175, + "value":"", + "question_id":12943, + "created_at":"2018-04-26T10:04:32.963+02:00", + "updated_at":"2018-04-26T10:04:32.963+02:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":377176, + "value":"", + "question_id":12943, + "created_at":"2018-04-26T10:04:32.975+02:00", + "updated_at":"2018-04-26T10:04:32.975+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377178, + "value":"", + "question_id":12943, + "created_at":"2018-04-26T10:04:32.994+02:00", + "updated_at":"2018-04-26T10:04:32.994+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":377179, + "value":"", + "question_id":12943, + "created_at":"2018-04-26T10:04:33.002+02:00", + "updated_at":"2018-04-26T10:04:33.002+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":377180, + "value":"", + "question_id":12943, + "created_at":"2018-04-26T10:04:33.008+02:00", + "updated_at":"2018-04-26T10:04:33.008+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":377181, + "value":"", + "question_id":12943, + "created_at":"2018-04-26T10:04:33.018+02:00", + "updated_at":"2018-04-26T10:04:33.018+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":377183, + "value":"", + "question_id":12943, + "created_at":"2018-04-26T10:04:33.030+02:00", + "updated_at":"2018-04-26T10:04:33.030+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":377184, + "value":"", + "question_id":12943, + "created_at":"2018-04-26T10:04:33.037+02:00", + "updated_at":"2018-04-26T10:04:33.037+02:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377185, + "value":"", + "question_id":12943, + "created_at":"2018-04-26T10:04:33.046+02:00", + "updated_at":"2018-04-26T10:04:33.046+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383913, + "value":"Yes", + "question_id":12943, + "created_at":"2017-12-06T13:24:01.392+01:00", + "updated_at":"2017-12-06T13:24:01.392+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641568, + "value":"No", + "question_id":12943, + "created_at":"2018-10-30T13:59:58.232+01:00", + "updated_at":"2018-10-30T13:59:58.232+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756396, + "value":"Yes", + "question_id":12943, + "created_at":"2018-11-05T14:30:28.982+01:00", + "updated_at":"2018-11-05T14:30:28.982+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377186, + "value":"", + "question_id":12943, + "created_at":"2018-04-26T10:04:33.055+02:00", + "updated_at":"2018-04-26T10:04:33.055+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1483381, + "value":"Yes", + "question_id":12943, + "created_at":"2020-11-16T13:54:00.003+01:00", + "updated_at":"2020-11-16T13:54:00.003+01:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":1499389, + "value":"Planned", + "question_id":12943, + "created_at":"2021-11-02T15:25:36.554+01:00", + "updated_at":"2021-11-02T15:25:36.554+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":1501061, + "value":"Planned", + "question_id":12943, + "created_at":"2021-11-09T16:18:06.085+01:00", + "updated_at":"2021-11-09T16:18:06.085+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"identifier-reg", + "title":"Do you offer Identifier registry?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Identifier registry", + "title_detailed":"Registering of unique and automatically-processable identifiers in the form of text or numeric strings.", + "tags":[ + "security" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365600, + "value":"No", + "question_id":12969, + "created_at":"2017-09-06T12:15:14.268+02:00", + "updated_at":"2017-09-06T12:15:14.268+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365904, + "value":"No", + "question_id":12969, + "created_at":"2017-09-13T13:43:27.606+02:00", + "updated_at":"2017-09-13T13:43:27.606+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366344, + "value":"No", + "question_id":12969, + "created_at":"2017-09-29T13:48:44.420+02:00", + "updated_at":"2017-09-29T13:48:44.420+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366563, + "value":"No", + "question_id":12969, + "created_at":"2017-10-08T09:14:41.671+02:00", + "updated_at":"2017-10-08T09:14:41.671+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":366657, + "value":"Yes", + "question_id":12969, + "created_at":"2017-10-09T11:11:43.876+02:00", + "updated_at":"2017-10-09T11:11:43.876+02:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366762, + "value":"No", + "question_id":12969, + "created_at":"2017-10-10T13:00:31.102+02:00", + "updated_at":"2017-10-10T13:00:31.102+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":366818, + "value":"No", + "question_id":12969, + "created_at":"2017-10-10T16:18:26.648+02:00", + "updated_at":"2017-10-10T16:18:26.648+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366901, + "value":"No", + "question_id":12969, + "created_at":"2017-10-11T09:39:00.696+02:00", + "updated_at":"2017-10-11T09:39:00.696+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367233, + "value":"No", + "question_id":12969, + "created_at":"2017-10-11T14:15:16.019+02:00", + "updated_at":"2017-10-11T14:15:16.019+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367931, + "value":"No", + "question_id":12969, + "created_at":"2017-10-24T13:19:57.098+02:00", + "updated_at":"2017-10-24T13:19:57.098+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":368177, + "value":"No", + "question_id":12969, + "created_at":"2017-10-30T09:21:52.474+01:00", + "updated_at":"2017-10-30T09:21:52.474+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368534, + "value":"No", + "question_id":12969, + "created_at":"2017-10-31T14:31:03.755+01:00", + "updated_at":"2017-10-31T14:31:03.755+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369215, + "value":"Yes", + "question_id":12969, + "created_at":"2017-11-10T15:35:52.956+01:00", + "updated_at":"2017-11-10T15:35:52.956+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369383, + "value":"No", + "question_id":12969, + "created_at":"2017-11-11T20:44:29.399+01:00", + "updated_at":"2017-11-11T20:44:29.399+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370202, + "value":"No", + "question_id":12969, + "created_at":"2017-11-23T14:07:20.824+01:00", + "updated_at":"2017-11-23T14:07:20.824+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370755, + "value":"No", + "question_id":12969, + "created_at":"2017-11-27T09:34:08.518+01:00", + "updated_at":"2017-11-27T09:34:08.518+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370948, + "value":"No", + "question_id":12969, + "created_at":"2017-11-27T10:38:54.543+01:00", + "updated_at":"2017-11-27T10:38:54.543+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371118, + "value":"No", + "question_id":12969, + "created_at":"2017-11-27T13:47:04.896+01:00", + "updated_at":"2017-11-27T13:47:04.896+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371751, + "value":"No", + "question_id":12969, + "created_at":"2017-11-28T13:11:09.715+01:00", + "updated_at":"2017-11-28T13:11:09.715+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372292, + "value":"No", + "question_id":12969, + "created_at":"2017-11-29T12:25:01.002+01:00", + "updated_at":"2017-11-29T12:25:01.002+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372618, + "value":"No", + "question_id":12969, + "created_at":"2017-11-29T21:41:00.221+01:00", + "updated_at":"2017-11-29T21:41:00.221+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":373464, + "value":"No", + "question_id":12969, + "created_at":"2017-12-04T12:41:25.985+01:00", + "updated_at":"2017-12-04T12:41:25.985+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373690, + "value":"No", + "question_id":12969, + "created_at":"2017-12-04T17:56:49.204+01:00", + "updated_at":"2017-12-04T17:56:49.204+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374056, + "value":"No", + "question_id":12969, + "created_at":"2017-12-06T07:22:34.608+01:00", + "updated_at":"2017-12-06T07:22:34.608+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374320, + "value":"No", + "question_id":12969, + "created_at":"2017-12-06T13:01:20.903+01:00", + "updated_at":"2017-12-06T13:01:20.903+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":374627, + "value":"No", + "question_id":12969, + "created_at":"2017-12-11T09:30:04.877+01:00", + "updated_at":"2017-12-11T09:30:04.877+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375323, + "value":"No", + "question_id":12969, + "created_at":"2017-12-27T14:41:50.744+01:00", + "updated_at":"2017-12-27T14:41:50.744+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375433, + "value":"Yes", + "question_id":12969, + "created_at":"2017-12-28T10:08:38.445+01:00", + "updated_at":"2017-12-28T10:08:38.445+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":376014, + "value":"Yes", + "question_id":12969, + "created_at":"2018-02-16T09:46:44.760+01:00", + "updated_at":"2018-02-16T09:46:44.760+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377882, + "value":"", + "question_id":12969, + "created_at":"2018-04-26T10:04:39.375+02:00", + "updated_at":"2018-04-26T10:04:39.375+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":377883, + "value":"", + "question_id":12969, + "created_at":"2018-04-26T10:04:39.388+02:00", + "updated_at":"2018-04-26T10:04:39.388+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377884, + "value":"", + "question_id":12969, + "created_at":"2018-04-26T10:04:39.395+02:00", + "updated_at":"2018-04-26T10:04:39.395+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":377886, + "value":"", + "question_id":12969, + "created_at":"2018-04-26T10:04:39.410+02:00", + "updated_at":"2018-04-26T10:04:39.410+02:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":377887, + "value":"", + "question_id":12969, + "created_at":"2018-04-26T10:04:39.419+02:00", + "updated_at":"2018-04-26T10:04:39.419+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":377888, + "value":"", + "question_id":12969, + "created_at":"2018-04-26T10:04:39.434+02:00", + "updated_at":"2018-04-26T10:04:39.434+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":377889, + "value":"", + "question_id":12969, + "created_at":"2018-04-26T10:04:39.443+02:00", + "updated_at":"2018-04-26T10:04:39.443+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377890, + "value":"", + "question_id":12969, + "created_at":"2018-04-26T10:04:39.458+02:00", + "updated_at":"2018-04-26T10:04:39.458+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":377891, + "value":"", + "question_id":12969, + "created_at":"2018-04-26T10:04:39.466+02:00", + "updated_at":"2018-04-26T10:04:39.466+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377892, + "value":"", + "question_id":12969, + "created_at":"2018-04-26T10:04:39.486+02:00", + "updated_at":"2018-04-26T10:04:39.486+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383984, + "value":"Yes", + "question_id":12969, + "created_at":"2017-12-06T13:29:17.096+01:00", + "updated_at":"2017-12-06T13:29:17.096+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":739157, + "value":"Yes", + "question_id":12969, + "created_at":"2018-11-03T17:04:47.690+01:00", + "updated_at":"2018-11-03T17:04:47.690+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377893, + "value":"", + "question_id":12969, + "created_at":"2018-04-26T10:04:39.496+02:00", + "updated_at":"2018-04-26T10:04:39.496+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":1483409, + "value":"Yes", + "question_id":12969, + "created_at":"2020-11-16T13:59:54.794+01:00", + "updated_at":"2020-11-16T13:59:54.794+01:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"post-production", + "title":"Do you offer Media post-production?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Media post production", + "title_detailed":"Work undertaken after the process of recording (or production) e.g. editing, synchronisation.", + "tags":[ + "multimedia" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365636, + "value":"No", + "question_id":12925, + "created_at":"2017-09-06T12:18:56.835+02:00", + "updated_at":"2017-09-06T12:18:56.835+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365701, + "value":"Yes", + "question_id":12925, + "created_at":"2017-09-07T15:33:55.197+02:00", + "updated_at":"2017-09-07T15:33:55.197+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365923, + "value":"No", + "question_id":12925, + "created_at":"2017-09-13T13:45:55.786+02:00", + "updated_at":"2017-09-13T13:45:55.786+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366367, + "value":"No", + "question_id":12925, + "created_at":"2017-09-29T13:52:38.539+02:00", + "updated_at":"2017-09-29T13:52:38.539+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366590, + "value":"No", + "question_id":12925, + "created_at":"2017-10-08T09:18:57.308+02:00", + "updated_at":"2017-10-08T09:18:57.308+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366918, + "value":"No", + "question_id":12925, + "created_at":"2017-10-11T10:42:36.245+02:00", + "updated_at":"2017-10-11T10:42:36.245+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367492, + "value":"No", + "question_id":12925, + "created_at":"2017-10-17T12:05:49.350+02:00", + "updated_at":"2017-10-17T12:05:49.350+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367757, + "value":"No", + "question_id":12925, + "created_at":"2017-10-23T19:34:06.856+02:00", + "updated_at":"2017-10-23T19:34:06.856+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367960, + "value":"No", + "question_id":12925, + "created_at":"2017-10-24T13:28:58.445+02:00", + "updated_at":"2017-10-24T13:28:58.445+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368961, + "value":"No", + "question_id":12925, + "created_at":"2017-11-08T15:57:34.392+01:00", + "updated_at":"2017-11-08T15:57:34.392+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369084, + "value":"No", + "question_id":12925, + "created_at":"2017-11-10T11:15:36.572+01:00", + "updated_at":"2017-11-10T11:15:36.572+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369245, + "value":"Planned", + "question_id":12925, + "created_at":"2017-11-10T15:39:40.897+01:00", + "updated_at":"2017-11-10T15:39:40.897+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369827, + "value":"No", + "question_id":12925, + "created_at":"2017-11-21T13:47:59.954+01:00", + "updated_at":"2017-11-21T13:47:59.954+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370235, + "value":"No", + "question_id":12925, + "created_at":"2017-11-23T14:12:48.642+01:00", + "updated_at":"2017-11-23T14:12:48.642+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370780, + "value":"No", + "question_id":12925, + "created_at":"2017-11-27T09:36:44.619+01:00", + "updated_at":"2017-11-27T09:36:44.619+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371275, + "value":"No", + "question_id":12925, + "created_at":"2017-11-27T14:22:44.908+01:00", + "updated_at":"2017-11-27T14:22:44.908+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371433, + "value":"No", + "question_id":12925, + "created_at":"2017-11-27T14:49:34.566+01:00", + "updated_at":"2017-11-27T14:49:34.566+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371783, + "value":"No", + "question_id":12925, + "created_at":"2017-11-28T13:18:58.818+01:00", + "updated_at":"2017-11-28T13:18:58.818+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372330, + "value":"No", + "question_id":12925, + "created_at":"2017-11-29T12:34:26.300+01:00", + "updated_at":"2017-11-29T12:34:26.300+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372653, + "value":"No", + "question_id":12925, + "created_at":"2017-11-29T21:47:44.464+01:00", + "updated_at":"2017-11-29T21:47:44.464+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372774, + "value":"No", + "question_id":12925, + "created_at":"2017-11-30T08:34:08.030+01:00", + "updated_at":"2017-11-30T08:34:08.030+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373716, + "value":"No", + "question_id":12925, + "created_at":"2017-12-04T18:00:40.170+01:00", + "updated_at":"2017-12-04T18:00:40.170+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374362, + "value":"No", + "question_id":12925, + "created_at":"2017-12-06T13:16:41.510+01:00", + "updated_at":"2017-12-06T13:16:41.510+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375044, + "value":"No", + "question_id":12925, + "created_at":"2017-12-14T14:22:05.840+01:00", + "updated_at":"2017-12-14T14:22:05.840+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375504, + "value":"No", + "question_id":12925, + "created_at":"2017-12-28T10:36:52.033+01:00", + "updated_at":"2017-12-28T10:36:52.033+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375694, + "value":"Yes", + "question_id":12925, + "created_at":"2018-01-09T17:00:59.947+01:00", + "updated_at":"2018-01-09T17:00:59.947+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375908, + "value":"No", + "question_id":12925, + "created_at":"2018-01-23T12:34:38.889+01:00", + "updated_at":"2018-01-23T12:34:38.889+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":378761, + "value":"", + "question_id":12925, + "created_at":"2018-04-26T10:04:47.500+02:00", + "updated_at":"2018-04-26T10:04:47.500+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":378762, + "value":"", + "question_id":12925, + "created_at":"2018-04-26T10:04:47.508+02:00", + "updated_at":"2018-04-26T10:04:47.508+02:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":378763, + "value":"", + "question_id":12925, + "created_at":"2018-04-26T10:04:47.513+02:00", + "updated_at":"2018-04-26T10:04:47.513+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":378764, + "value":"", + "question_id":12925, + "created_at":"2018-04-26T10:04:47.518+02:00", + "updated_at":"2018-04-26T10:04:47.518+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":378767, + "value":"", + "question_id":12925, + "created_at":"2018-04-26T10:04:47.535+02:00", + "updated_at":"2018-04-26T10:04:47.535+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":378768, + "value":"", + "question_id":12925, + "created_at":"2018-04-26T10:04:47.541+02:00", + "updated_at":"2018-04-26T10:04:47.541+02:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":378769, + "value":"", + "question_id":12925, + "created_at":"2018-04-26T10:04:47.552+02:00", + "updated_at":"2018-04-26T10:04:47.552+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":378770, + "value":"", + "question_id":12925, + "created_at":"2018-04-26T10:04:47.561+02:00", + "updated_at":"2018-04-26T10:04:47.561+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":378771, + "value":"", + "question_id":12925, + "created_at":"2018-04-26T10:04:47.566+02:00", + "updated_at":"2018-04-26T10:04:47.566+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":378772, + "value":"", + "question_id":12925, + "created_at":"2018-04-26T10:04:47.573+02:00", + "updated_at":"2018-04-26T10:04:47.573+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":378773, + "value":"", + "question_id":12925, + "created_at":"2018-04-26T10:04:47.585+02:00", + "updated_at":"2018-04-26T10:04:47.585+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":378774, + "value":"", + "question_id":12925, + "created_at":"2018-04-26T10:04:47.592+02:00", + "updated_at":"2018-04-26T10:04:47.592+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":378775, + "value":"", + "question_id":12925, + "created_at":"2018-04-26T10:04:47.597+02:00", + "updated_at":"2018-04-26T10:04:47.597+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":384013, + "value":"Yes", + "question_id":12925, + "created_at":"2017-12-05T15:59:59.888+01:00", + "updated_at":"2017-12-05T15:59:59.888+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756409, + "value":"Yes", + "question_id":12925, + "created_at":"2018-11-05T14:34:47.304+01:00", + "updated_at":"2018-11-05T14:34:47.304+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":378776, + "value":"", + "question_id":12925, + "created_at":"2018-04-26T10:04:47.604+02:00", + "updated_at":"2018-04-26T10:04:47.604+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"e-portfolio", + "title":"Do you offer e-portfolio service?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"e-portfolio service", + "title_detailed":"Functions to create and share user professional and career e-portfolios.", + "tags":[ + "collaboration" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365629, + "value":"Planned", + "question_id":13017, + "created_at":"2017-09-06T12:18:26.737+02:00", + "updated_at":"2017-09-06T12:18:26.737+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365687, + "value":"Yes", + "question_id":13017, + "created_at":"2017-09-07T15:32:37.783+02:00", + "updated_at":"2017-09-07T15:32:37.783+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365916, + "value":"Yes", + "question_id":13017, + "created_at":"2017-09-13T13:45:33.138+02:00", + "updated_at":"2017-09-13T13:45:33.138+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366585, + "value":"Yes", + "question_id":13017, + "created_at":"2017-10-08T09:18:18.888+02:00", + "updated_at":"2017-10-08T09:18:18.888+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366888, + "value":"Yes", + "question_id":13017, + "created_at":"2017-10-11T09:36:25.992+02:00", + "updated_at":"2017-10-11T09:36:25.992+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367257, + "value":"Yes", + "question_id":13017, + "created_at":"2017-10-11T14:19:55.137+02:00", + "updated_at":"2017-10-11T14:19:55.137+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367345, + "value":"Yes", + "question_id":13017, + "created_at":"2017-10-11T21:17:54.239+02:00", + "updated_at":"2017-10-11T21:17:54.239+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368932, + "value":"Yes", + "question_id":13017, + "created_at":"2017-11-08T15:47:32.146+01:00", + "updated_at":"2017-11-08T15:47:32.146+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369238, + "value":"Yes", + "question_id":13017, + "created_at":"2017-11-10T15:39:08.640+01:00", + "updated_at":"2017-11-10T15:39:08.640+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":369700, + "value":"Yes", + "question_id":13017, + "created_at":"2017-11-21T11:42:08.446+01:00", + "updated_at":"2017-11-21T11:42:08.446+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369829, + "value":"Yes", + "question_id":13017, + "created_at":"2017-11-21T13:48:17.806+01:00", + "updated_at":"2017-11-21T13:48:17.806+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":369904, + "value":"No", + "question_id":13017, + "created_at":"2017-11-21T16:51:46.102+01:00", + "updated_at":"2017-11-21T16:51:46.102+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370222, + "value":"Yes", + "question_id":13017, + "created_at":"2017-11-23T14:09:29.283+01:00", + "updated_at":"2017-11-23T14:09:29.283+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370773, + "value":"Yes", + "question_id":13017, + "created_at":"2017-11-27T09:36:24.611+01:00", + "updated_at":"2017-11-27T09:36:24.611+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371149, + "value":"Yes", + "question_id":13017, + "created_at":"2017-11-27T14:03:25.309+01:00", + "updated_at":"2017-11-27T14:03:25.309+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371302, + "value":"No", + "question_id":13017, + "created_at":"2017-11-27T14:29:50.131+01:00", + "updated_at":"2017-11-27T14:29:50.131+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372644, + "value":"Yes", + "question_id":13017, + "created_at":"2017-11-29T21:46:10.019+01:00", + "updated_at":"2017-11-29T21:46:10.019+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":373226, + "value":"Yes", + "question_id":13017, + "created_at":"2017-12-04T11:00:27.482+01:00", + "updated_at":"2017-12-04T11:00:27.482+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373257, + "value":"Yes", + "question_id":13017, + "created_at":"2017-12-04T11:14:47.075+01:00", + "updated_at":"2017-12-04T11:14:47.075+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373709, + "value":"No", + "question_id":13017, + "created_at":"2017-12-04T17:59:55.526+01:00", + "updated_at":"2017-12-04T17:59:55.526+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374723, + "value":"Yes", + "question_id":13017, + "created_at":"2017-12-13T11:08:21.387+01:00", + "updated_at":"2017-12-13T11:08:21.387+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375466, + "value":"Yes", + "question_id":13017, + "created_at":"2017-12-28T10:19:51.738+01:00", + "updated_at":"2017-12-28T10:19:51.738+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375903, + "value":"Yes", + "question_id":13017, + "created_at":"2018-01-23T12:32:56.434+01:00", + "updated_at":"2018-01-23T12:32:56.434+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":376003, + "value":"Yes", + "question_id":13017, + "created_at":"2018-02-16T09:41:44.573+01:00", + "updated_at":"2018-02-16T09:41:44.573+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":378423, + "value":"", + "question_id":13017, + "created_at":"2018-04-26T10:04:44.639+02:00", + "updated_at":"2018-04-26T10:04:44.639+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":378425, + "value":"", + "question_id":13017, + "created_at":"2018-04-26T10:04:44.655+02:00", + "updated_at":"2018-04-26T10:04:44.655+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":378429, + "value":"", + "question_id":13017, + "created_at":"2018-04-26T10:04:44.687+02:00", + "updated_at":"2018-04-26T10:04:44.687+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":378430, + "value":"", + "question_id":13017, + "created_at":"2018-04-26T10:04:44.698+02:00", + "updated_at":"2018-04-26T10:04:44.698+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":378431, + "value":"", + "question_id":13017, + "created_at":"2018-04-26T10:04:44.704+02:00", + "updated_at":"2018-04-26T10:04:44.704+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":378433, + "value":"", + "question_id":13017, + "created_at":"2018-04-26T10:04:44.724+02:00", + "updated_at":"2018-04-26T10:04:44.724+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":378434, + "value":"", + "question_id":13017, + "created_at":"2018-04-26T10:04:44.729+02:00", + "updated_at":"2018-04-26T10:04:44.729+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383986, + "value":"Yes", + "question_id":13017, + "created_at":"2017-12-05T15:58:08.983+01:00", + "updated_at":"2017-12-05T15:58:08.983+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618225, + "value":"Yes", + "question_id":13017, + "created_at":"2018-10-28T18:34:54.911+01:00", + "updated_at":"2018-10-28T18:34:54.911+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756380, + "value":"Yes", + "question_id":13017, + "created_at":"2018-11-05T14:05:47.056+01:00", + "updated_at":"2018-11-05T14:05:47.056+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":774395, + "value":"Yes", + "question_id":13017, + "created_at":"2018-11-15T12:47:25.242+01:00", + "updated_at":"2018-11-15T12:47:25.242+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":797996, + "value":"Yes", + "question_id":13017, + "created_at":"2018-11-27T19:08:48.890+01:00", + "updated_at":"2018-11-27T19:08:48.890+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":826795, + "value":"Yes", + "question_id":13017, + "created_at":"2019-09-13T16:11:58.325+02:00", + "updated_at":"2019-09-13T16:11:58.325+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":883329, + "value":"No", + "question_id":13017, + "created_at":"2019-10-28T11:25:28.234+01:00", + "updated_at":"2019-10-28T11:25:28.234+01:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":1037048, + "value":"Yes", + "question_id":13017, + "created_at":"2019-11-04T16:42:04.535+01:00", + "updated_at":"2019-11-04T16:42:04.535+01:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":1165430, + "value":"Yes", + "question_id":13017, + "created_at":"2019-11-12T20:14:27.680+01:00", + "updated_at":"2019-11-12T20:14:27.680+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":378435, + "value":"", + "question_id":13017, + "created_at":"2018-04-26T10:04:44.737+02:00", + "updated_at":"2018-04-26T10:04:44.737+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":1470691, + "value":"Yes", + "question_id":13017, + "created_at":"2020-10-16T13:56:25.153+02:00", + "updated_at":"2020-10-16T13:56:25.153+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":1493627, + "value":"Yes", + "question_id":13017, + "created_at":"2020-12-18T14:45:18.234+01:00", + "updated_at":"2020-12-18T14:45:18.234+01:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-conference", + "title":"Do you offer User conferences", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"User conferences", + "title_detailed":"Hosting of regular user conferences.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365630, + "value":"Yes", + "question_id":13019, + "created_at":"2017-09-06T12:18:30.550+02:00", + "updated_at":"2017-09-06T12:18:30.550+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365688, + "value":"Yes", + "question_id":13019, + "created_at":"2017-09-07T15:32:39.918+02:00", + "updated_at":"2017-09-07T15:32:39.918+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365917, + "value":"No", + "question_id":13019, + "created_at":"2017-09-13T13:45:36.250+02:00", + "updated_at":"2017-09-13T13:45:36.250+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366361, + "value":"No", + "question_id":13019, + "created_at":"2017-09-29T13:52:10.783+02:00", + "updated_at":"2017-09-29T13:52:10.783+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366586, + "value":"Yes", + "question_id":13019, + "created_at":"2017-10-08T09:18:24.467+02:00", + "updated_at":"2017-10-08T09:18:24.467+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366886, + "value":"Yes", + "question_id":13019, + "created_at":"2017-10-11T09:36:21.600+02:00", + "updated_at":"2017-10-11T09:36:21.600+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367479, + "value":"Yes", + "question_id":13019, + "created_at":"2017-10-17T12:04:26.108+02:00", + "updated_at":"2017-10-17T12:04:26.108+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367751, + "value":"No", + "question_id":13019, + "created_at":"2017-10-23T19:33:35.582+02:00", + "updated_at":"2017-10-23T19:33:35.582+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367954, + "value":"No", + "question_id":13019, + "created_at":"2017-10-24T13:27:19.167+02:00", + "updated_at":"2017-10-24T13:27:19.167+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368933, + "value":"Yes", + "question_id":13019, + "created_at":"2017-11-08T15:47:52.697+01:00", + "updated_at":"2017-11-08T15:47:52.697+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370227, + "value":"Yes", + "question_id":13019, + "created_at":"2017-11-23T14:11:10.907+01:00", + "updated_at":"2017-11-23T14:11:10.907+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":370366, + "value":"No", + "question_id":13019, + "created_at":"2017-11-24T16:13:48.616+01:00", + "updated_at":"2017-11-24T16:13:48.616+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":370566, + "value":"No", + "question_id":13019, + "created_at":"2017-11-24T19:10:15.640+01:00", + "updated_at":"2017-11-24T19:10:15.640+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370774, + "value":"No", + "question_id":13019, + "created_at":"2017-11-27T09:36:26.875+01:00", + "updated_at":"2017-11-27T09:36:26.875+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371299, + "value":"No", + "question_id":13019, + "created_at":"2017-11-27T14:29:43.870+01:00", + "updated_at":"2017-11-27T14:29:43.870+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371423, + "value":"Yes", + "question_id":13019, + "created_at":"2017-11-27T14:47:09.042+01:00", + "updated_at":"2017-11-27T14:47:09.042+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371777, + "value":"No", + "question_id":13019, + "created_at":"2017-11-28T13:18:32.039+01:00", + "updated_at":"2017-11-28T13:18:32.039+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372648, + "value":"No", + "question_id":13019, + "created_at":"2017-11-29T21:46:46.366+01:00", + "updated_at":"2017-11-29T21:46:46.366+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":372761, + "value":"No", + "question_id":13019, + "created_at":"2017-11-30T08:33:34.070+01:00", + "updated_at":"2017-11-30T08:33:34.070+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373259, + "value":"Yes", + "question_id":13019, + "created_at":"2017-12-04T11:14:57.037+01:00", + "updated_at":"2017-12-04T11:14:57.037+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373710, + "value":"Yes", + "question_id":13019, + "created_at":"2017-12-04T18:00:03.332+01:00", + "updated_at":"2017-12-04T18:00:03.332+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374350, + "value":"No", + "question_id":13019, + "created_at":"2017-12-06T13:14:26.434+01:00", + "updated_at":"2017-12-06T13:14:26.434+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375038, + "value":"No", + "question_id":13019, + "created_at":"2017-12-14T14:21:45.178+01:00", + "updated_at":"2017-12-14T14:21:45.178+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375385, + "value":"Yes", + "question_id":13019, + "created_at":"2017-12-28T09:44:05.677+01:00", + "updated_at":"2017-12-28T09:44:05.677+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375467, + "value":"Yes", + "question_id":13019, + "created_at":"2017-12-28T10:19:54.522+01:00", + "updated_at":"2017-12-28T10:19:54.522+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":378464, + "value":"", + "question_id":13019, + "created_at":"2018-04-26T10:04:45.030+02:00", + "updated_at":"2018-04-26T10:04:45.030+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":378466, + "value":"", + "question_id":13019, + "created_at":"2018-04-26T10:04:45.045+02:00", + "updated_at":"2018-04-26T10:04:45.045+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":378468, + "value":"", + "question_id":13019, + "created_at":"2018-04-26T10:04:45.057+02:00", + "updated_at":"2018-04-26T10:04:45.057+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":378469, + "value":"", + "question_id":13019, + "created_at":"2018-04-26T10:04:45.065+02:00", + "updated_at":"2018-04-26T10:04:45.065+02:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":378470, + "value":"", + "question_id":13019, + "created_at":"2018-04-26T10:04:45.076+02:00", + "updated_at":"2018-04-26T10:04:45.076+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":378471, + "value":"", + "question_id":13019, + "created_at":"2018-04-26T10:04:45.083+02:00", + "updated_at":"2018-04-26T10:04:45.083+02:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":378472, + "value":"", + "question_id":13019, + "created_at":"2018-04-26T10:04:45.091+02:00", + "updated_at":"2018-04-26T10:04:45.091+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":378473, + "value":"", + "question_id":13019, + "created_at":"2018-04-26T10:04:45.098+02:00", + "updated_at":"2018-04-26T10:04:45.098+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":378475, + "value":"", + "question_id":13019, + "created_at":"2018-04-26T10:04:45.117+02:00", + "updated_at":"2018-04-26T10:04:45.117+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":378476, + "value":"", + "question_id":13019, + "created_at":"2018-04-26T10:04:45.123+02:00", + "updated_at":"2018-04-26T10:04:45.123+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383974, + "value":"Yes", + "question_id":13019, + "created_at":"2017-12-05T15:59:06.624+01:00", + "updated_at":"2017-12-05T15:59:06.624+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641564, + "value":"Planned", + "question_id":13019, + "created_at":"2018-10-30T13:58:35.268+01:00", + "updated_at":"2018-10-30T13:58:35.268+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":774397, + "value":"Yes", + "question_id":13019, + "created_at":"2018-11-15T12:48:43.525+01:00", + "updated_at":"2018-11-15T12:48:43.525+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":826843, + "value":"Yes", + "question_id":13019, + "created_at":"2019-09-17T09:45:37.962+02:00", + "updated_at":"2019-09-17T09:45:37.962+02:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":1248627, + "value":"Yes", + "question_id":13019, + "created_at":"2019-12-02T17:31:06.461+01:00", + "updated_at":"2019-12-02T17:31:06.461+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":378477, + "value":"", + "question_id":13019, + "created_at":"2018-04-26T10:04:45.131+02:00", + "updated_at":"2018-04-26T10:04:45.131+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":1470696, + "value":"Yes", + "question_id":13019, + "created_at":"2020-10-16T14:51:29.490+02:00", + "updated_at":"2020-10-16T14:51:29.490+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":1509992, + "value":"Yes", + "question_id":13019, + "created_at":"2021-11-29T17:16:01.999+01:00", + "updated_at":"2021-11-29T17:16:01.999+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"user-portal", + "title":"Do you offer User portals?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"User portals", + "title_detailed":"User portal for service management and monitoring.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365625, + "value":"No", + "question_id":12931, + "created_at":"2017-09-06T12:18:13.335+02:00", + "updated_at":"2017-09-06T12:18:13.335+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365683, + "value":"No", + "question_id":12931, + "created_at":"2017-09-07T15:32:26.992+02:00", + "updated_at":"2017-09-07T15:32:26.992+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":365912, + "value":"No", + "question_id":12931, + "created_at":"2017-09-13T13:45:20.185+02:00", + "updated_at":"2017-09-13T13:45:20.185+02:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366357, + "value":"No", + "question_id":12931, + "created_at":"2017-09-29T13:51:52.196+02:00", + "updated_at":"2017-09-29T13:51:52.196+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366581, + "value":"No", + "question_id":12931, + "created_at":"2017-10-08T09:17:29.829+02:00", + "updated_at":"2017-10-08T09:17:29.829+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":366891, + "value":"No", + "question_id":12931, + "created_at":"2017-10-11T09:36:34.903+02:00", + "updated_at":"2017-10-11T09:36:34.903+02:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367252, + "value":"No", + "question_id":12931, + "created_at":"2017-10-11T14:19:01.510+02:00", + "updated_at":"2017-10-11T14:19:01.510+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":367342, + "value":"Yes", + "question_id":12931, + "created_at":"2017-10-11T21:17:30.943+02:00", + "updated_at":"2017-10-11T21:17:30.943+02:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367747, + "value":"No", + "question_id":12931, + "created_at":"2017-10-23T19:33:15.618+02:00", + "updated_at":"2017-10-23T19:33:15.618+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367950, + "value":"No", + "question_id":12931, + "created_at":"2017-10-24T13:26:15.540+02:00", + "updated_at":"2017-10-24T13:26:15.540+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":368191, + "value":"No", + "question_id":12931, + "created_at":"2017-10-30T09:26:43.432+01:00", + "updated_at":"2017-10-30T09:26:43.432+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368928, + "value":"Yes", + "question_id":12931, + "created_at":"2017-11-08T15:46:29.903+01:00", + "updated_at":"2017-11-08T15:46:29.903+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":369832, + "value":"No", + "question_id":12931, + "created_at":"2017-11-21T13:48:49.139+01:00", + "updated_at":"2017-11-21T13:48:49.139+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370219, + "value":"No", + "question_id":12931, + "created_at":"2017-11-23T14:09:19.228+01:00", + "updated_at":"2017-11-23T14:09:19.228+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":370447, + "value":"No", + "question_id":12931, + "created_at":"2017-11-24T17:04:47.484+01:00", + "updated_at":"2017-11-24T17:04:47.484+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370770, + "value":"No", + "question_id":12931, + "created_at":"2017-11-27T09:36:16.053+01:00", + "updated_at":"2017-11-27T09:36:16.053+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371145, + "value":"No", + "question_id":12931, + "created_at":"2017-11-27T14:02:27.375+01:00", + "updated_at":"2017-11-27T14:02:27.375+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":371311, + "value":"No", + "question_id":12931, + "created_at":"2017-11-27T14:30:08.240+01:00", + "updated_at":"2017-11-27T14:30:08.240+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371773, + "value":"No", + "question_id":12931, + "created_at":"2017-11-28T13:18:22.208+01:00", + "updated_at":"2017-11-28T13:18:22.208+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372319, + "value":"Yes", + "question_id":12931, + "created_at":"2017-11-29T12:32:28.651+01:00", + "updated_at":"2017-11-29T12:32:28.651+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372641, + "value":"No", + "question_id":12931, + "created_at":"2017-11-29T21:45:52.591+01:00", + "updated_at":"2017-11-29T21:45:52.591+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373254, + "value":"No", + "question_id":12931, + "created_at":"2017-12-04T11:14:32.973+01:00", + "updated_at":"2017-12-04T11:14:32.973+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373705, + "value":"Yes", + "question_id":12931, + "created_at":"2017-12-04T17:59:30.254+01:00", + "updated_at":"2017-12-04T17:59:30.254+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374345, + "value":"No", + "question_id":12931, + "created_at":"2017-12-06T13:13:30.927+01:00", + "updated_at":"2017-12-06T13:13:30.927+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375034, + "value":"No", + "question_id":12931, + "created_at":"2017-12-14T14:21:32.127+01:00", + "updated_at":"2017-12-14T14:21:32.127+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375464, + "value":"No", + "question_id":12931, + "created_at":"2017-12-28T10:19:42.523+01:00", + "updated_at":"2017-12-28T10:19:42.523+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":375703, + "value":"No", + "question_id":12931, + "created_at":"2018-01-09T17:28:12.577+01:00", + "updated_at":"2018-01-09T17:28:12.577+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":378271, + "value":"", + "question_id":12931, + "created_at":"2018-04-26T10:04:43.158+02:00", + "updated_at":"2018-04-26T10:04:43.158+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":378272, + "value":"", + "question_id":12931, + "created_at":"2018-04-26T10:04:43.172+02:00", + "updated_at":"2018-04-26T10:04:43.172+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":378273, + "value":"", + "question_id":12931, + "created_at":"2018-04-26T10:04:43.179+02:00", + "updated_at":"2018-04-26T10:04:43.179+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":378275, + "value":"", + "question_id":12931, + "created_at":"2018-04-26T10:04:43.195+02:00", + "updated_at":"2018-04-26T10:04:43.195+02:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":378276, + "value":"", + "question_id":12931, + "created_at":"2018-04-26T10:04:43.204+02:00", + "updated_at":"2018-04-26T10:04:43.204+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":378277, + "value":"", + "question_id":12931, + "created_at":"2018-04-26T10:04:43.214+02:00", + "updated_at":"2018-04-26T10:04:43.214+02:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":378278, + "value":"", + "question_id":12931, + "created_at":"2018-04-26T10:04:43.231+02:00", + "updated_at":"2018-04-26T10:04:43.231+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":378279, + "value":"", + "question_id":12931, + "created_at":"2018-04-26T10:04:43.240+02:00", + "updated_at":"2018-04-26T10:04:43.240+02:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":378280, + "value":"", + "question_id":12931, + "created_at":"2018-04-26T10:04:43.252+02:00", + "updated_at":"2018-04-26T10:04:43.252+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":378281, + "value":"", + "question_id":12931, + "created_at":"2018-04-26T10:04:43.261+02:00", + "updated_at":"2018-04-26T10:04:43.261+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":378282, + "value":"", + "question_id":12931, + "created_at":"2018-04-26T10:04:43.277+02:00", + "updated_at":"2018-04-26T10:04:43.277+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":378283, + "value":"", + "question_id":12931, + "created_at":"2018-04-26T10:04:43.288+02:00", + "updated_at":"2018-04-26T10:04:43.288+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":378284, + "value":"", + "question_id":12931, + "created_at":"2018-04-26T10:04:43.295+02:00", + "updated_at":"2018-04-26T10:04:43.295+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383895, + "value":"Planned", + "question_id":12931, + "created_at":"2017-12-06T13:36:58.916+01:00", + "updated_at":"2017-12-06T13:36:58.916+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":378285, + "value":"", + "question_id":12931, + "created_at":"2018-04-26T10:04:43.306+02:00", + "updated_at":"2018-04-26T10:04:43.306+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":1499391, + "value":"Yes", + "question_id":12931, + "created_at":"2021-11-02T15:28:59.052+01:00", + "updated_at":"2021-11-02T15:28:59.052+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"admin-tools", + "title":"Do you offer Finance/admin systems?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Finance/admin systems", + "title_detailed":"Provision of ICT systems used in finance and administration.", + "tags":[ + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "48":{ + "id":365590, + "value":"Yes", + "question_id":12975, + "created_at":"2017-09-06T12:14:16.443+02:00", + "updated_at":"2017-09-06T12:14:16.443+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "42":{ + "id":365790, + "value":"Yes", + "question_id":12975, + "created_at":"2017-09-07T15:50:38.440+02:00", + "updated_at":"2017-09-07T15:50:38.440+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366331, + "value":"Yes", + "question_id":12975, + "created_at":"2017-09-29T13:45:45.942+02:00", + "updated_at":"2017-09-29T13:45:45.942+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":366609, + "value":"Yes", + "question_id":12975, + "created_at":"2017-10-08T09:21:45.122+02:00", + "updated_at":"2017-10-08T09:21:45.122+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366756, + "value":"Yes", + "question_id":12975, + "created_at":"2017-10-10T12:56:15.550+02:00", + "updated_at":"2017-10-10T12:56:15.550+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":367445, + "value":"Yes", + "question_id":12975, + "created_at":"2017-10-17T11:48:54.201+02:00", + "updated_at":"2017-10-17T11:48:54.201+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367717, + "value":"Yes", + "question_id":12975, + "created_at":"2017-10-23T19:27:19.656+02:00", + "updated_at":"2017-10-23T19:27:19.656+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367920, + "value":"Yes", + "question_id":12975, + "created_at":"2017-10-24T13:17:13.197+02:00", + "updated_at":"2017-10-24T13:17:13.197+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368504, + "value":"Yes", + "question_id":12975, + "created_at":"2017-10-31T14:27:18.550+01:00", + "updated_at":"2017-10-31T14:27:18.550+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368733, + "value":"Yes", + "question_id":12975, + "created_at":"2017-11-02T13:23:59.946+01:00", + "updated_at":"2017-11-02T13:23:59.946+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":369375, + "value":"Yes", + "question_id":12975, + "created_at":"2017-11-11T20:42:07.673+01:00", + "updated_at":"2017-11-11T20:42:07.673+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370180, + "value":"Yes", + "question_id":12975, + "created_at":"2017-11-23T14:01:52.581+01:00", + "updated_at":"2017-11-23T14:01:52.581+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":370604, + "value":"Yes", + "question_id":12975, + "created_at":"2017-11-26T10:29:04.816+01:00", + "updated_at":"2017-11-26T10:29:04.816+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370743, + "value":"Yes", + "question_id":12975, + "created_at":"2017-11-27T09:33:07.346+01:00", + "updated_at":"2017-11-27T09:33:07.346+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":370942, + "value":"Yes", + "question_id":12975, + "created_at":"2017-11-27T10:38:08.647+01:00", + "updated_at":"2017-11-27T10:38:08.647+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371379, + "value":"Yes", + "question_id":12975, + "created_at":"2017-11-27T14:38:39.091+01:00", + "updated_at":"2017-11-27T14:38:39.091+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":371569, + "value":"Yes", + "question_id":12975, + "created_at":"2017-11-27T16:38:56.399+01:00", + "updated_at":"2017-11-27T16:38:56.399+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371739, + "value":"Yes", + "question_id":12975, + "created_at":"2017-11-28T13:09:55.119+01:00", + "updated_at":"2017-11-28T13:09:55.119+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":371864, + "value":"Yes", + "question_id":12975, + "created_at":"2017-11-28T14:56:44.322+01:00", + "updated_at":"2017-11-28T14:56:44.322+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372276, + "value":"Yes", + "question_id":12975, + "created_at":"2017-11-29T12:20:23.474+01:00", + "updated_at":"2017-11-29T12:20:23.474+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372604, + "value":"Yes", + "question_id":12975, + "created_at":"2017-11-29T21:38:38.018+01:00", + "updated_at":"2017-11-29T21:38:38.018+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":373306, + "value":"Yes", + "question_id":12975, + "created_at":"2017-12-04T11:23:02.734+01:00", + "updated_at":"2017-12-04T11:23:02.734+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373679, + "value":"Yes", + "question_id":12975, + "created_at":"2017-12-04T17:55:13.264+01:00", + "updated_at":"2017-12-04T17:55:13.264+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374276, + "value":"Yes", + "question_id":12975, + "created_at":"2017-12-06T11:16:37.357+01:00", + "updated_at":"2017-12-06T11:16:37.357+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374674, + "value":"Yes", + "question_id":12975, + "created_at":"2017-12-13T09:41:39.154+01:00", + "updated_at":"2017-12-13T09:41:39.154+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":374919, + "value":"Yes", + "question_id":12975, + "created_at":"2017-12-14T12:47:09.294+01:00", + "updated_at":"2017-12-14T12:47:09.294+01:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":375013, + "value":"Yes", + "question_id":12975, + "created_at":"2017-12-14T14:19:23.605+01:00", + "updated_at":"2017-12-14T14:19:23.605+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375428, + "value":"Yes", + "question_id":12975, + "created_at":"2017-12-28T10:07:40.083+01:00", + "updated_at":"2017-12-28T10:07:40.083+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375821, + "value":"Yes", + "question_id":12975, + "created_at":"2018-01-22T00:49:31.176+01:00", + "updated_at":"2018-01-22T00:49:31.176+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":377660, + "value":"", + "question_id":12975, + "created_at":"2018-04-26T10:04:37.587+02:00", + "updated_at":"2018-04-26T10:04:37.587+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":377662, + "value":"", + "question_id":12975, + "created_at":"2018-04-26T10:04:37.601+02:00", + "updated_at":"2018-04-26T10:04:37.601+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":377666, + "value":"", + "question_id":12975, + "created_at":"2018-04-26T10:04:37.629+02:00", + "updated_at":"2018-04-26T10:04:37.629+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":377668, + "value":"", + "question_id":12975, + "created_at":"2018-04-26T10:04:37.642+02:00", + "updated_at":"2018-04-26T10:04:37.642+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":377670, + "value":"", + "question_id":12975, + "created_at":"2018-04-26T10:04:37.662+02:00", + "updated_at":"2018-04-26T10:04:37.662+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383963, + "value":"Yes", + "question_id":12975, + "created_at":"2017-12-05T15:48:18.797+01:00", + "updated_at":"2017-12-05T15:48:18.797+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":618209, + "value":"Yes", + "question_id":12975, + "created_at":"2018-10-28T18:29:33.603+01:00", + "updated_at":"2018-10-28T18:29:33.603+01:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":618243, + "value":"Yes", + "question_id":12975, + "created_at":"2018-10-29T08:13:05.323+01:00", + "updated_at":"2018-10-29T08:13:05.323+01:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":641544, + "value":"Yes", + "question_id":12975, + "created_at":"2018-10-30T13:49:19.977+01:00", + "updated_at":"2018-10-30T13:49:19.977+01:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":756367, + "value":"Yes", + "question_id":12975, + "created_at":"2018-11-05T14:02:19.841+01:00", + "updated_at":"2018-11-05T14:02:19.841+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":774384, + "value":"Yes", + "question_id":12975, + "created_at":"2018-11-15T12:43:02.168+01:00", + "updated_at":"2018-11-15T12:43:02.168+01:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":827099, + "value":"Yes", + "question_id":12975, + "created_at":"2019-10-02T17:07:04.827+02:00", + "updated_at":"2019-10-02T17:07:04.827+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":1228164, + "value":"Yes", + "question_id":12975, + "created_at":"2019-11-21T20:16:19.914+01:00", + "updated_at":"2019-11-21T20:16:19.914+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":377671, + "value":"", + "question_id":12975, + "created_at":"2018-04-26T10:04:37.669+02:00", + "updated_at":"2018-04-26T10:04:37.669+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"nameserver", + "title":"Do you offer Nameserver service?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"Nameserver services", + "title_detailed":"Operation of nameservers and maintenance of DNS information on behalf of users.", + "tags":[ + "ISP" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + }, + { + "42":{ + "id":365827, + "value":"Yes", + "question_id":13045, + "created_at":"2017-09-13T11:34:27.707+02:00", + "updated_at":"2017-09-13T11:34:27.707+02:00", + "response_id":null, + "nren_id":42, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"SWITCH", + "country_name":"Switzerland", + "country_code":"CH", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "16":{ + "id":366139, + "value":"No", + "question_id":13045, + "created_at":"2017-09-19T14:51:36.569+02:00", + "updated_at":"2017-09-19T14:51:36.569+02:00", + "response_id":null, + "nren_id":16, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"DFN", + "country_name":"Germany", + "country_code":"DE", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "7":{ + "id":366308, + "value":"No", + "question_id":13045, + "created_at":"2017-09-29T13:41:18.157+02:00", + "updated_at":"2017-09-29T13:41:18.157+02:00", + "response_id":null, + "nren_id":7, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"CYNET", + "country_name":"Cyprus", + "country_code":"CY", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "54":{ + "id":366744, + "value":"No", + "question_id":13045, + "created_at":"2017-10-10T11:42:02.023+02:00", + "updated_at":"2017-10-10T11:42:02.023+02:00", + "response_id":null, + "nren_id":54, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"BASNET", + "country_name":"Belarus", + "country_code":"BY", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "22":{ + "id":367696, + "value":"No", + "question_id":13045, + "created_at":"2017-10-23T19:25:10.864+02:00", + "updated_at":"2017-10-23T19:25:10.864+02:00", + "response_id":null, + "nren_id":22, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"IUCC", + "country_name":"Israel", + "country_code":"IL", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "15":{ + "id":367888, + "value":"No", + "question_id":13045, + "created_at":"2017-10-24T13:05:45.265+02:00", + "updated_at":"2017-10-24T13:05:45.265+02:00", + "response_id":null, + "nren_id":15, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"GRENA", + "country_name":"Georgia", + "country_code":"GE", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "33":{ + "id":368471, + "value":"Yes", + "question_id":13045, + "created_at":"2017-10-31T14:20:05.213+01:00", + "updated_at":"2017-10-31T14:20:05.213+01:00", + "response_id":null, + "nren_id":33, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"Uninett", + "country_name":"Norway", + "country_code":"NO", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "12":{ + "id":368710, + "value":"No", + "question_id":13045, + "created_at":"2017-11-02T13:21:30.665+01:00", + "updated_at":"2017-11-02T13:21:30.665+01:00", + "response_id":null, + "nren_id":12, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"Funet", + "country_name":"Finland", + "country_code":"FI", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "32":{ + "id":368897, + "value":"Yes", + "question_id":13045, + "created_at":"2017-11-08T15:30:21.739+01:00", + "updated_at":"2017-11-08T15:30:21.739+01:00", + "response_id":null, + "nren_id":32, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"SURFnet", + "country_name":"Netherlands", + "country_code":"NL", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "18":{ + "id":369180, + "value":"Yes", + "question_id":13045, + "created_at":"2017-11-10T15:31:25.102+01:00", + "updated_at":"2017-11-10T15:31:25.102+01:00", + "response_id":null, + "nren_id":18, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"KIFU", + "country_name":"Hungary", + "country_code":"HU", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "4":{ + "id":370137, + "value":"No", + "question_id":13045, + "created_at":"2017-11-23T13:48:54.790+01:00", + "updated_at":"2017-11-23T13:48:54.790+01:00", + "response_id":null, + "nren_id":4, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"ACOnet", + "country_name":"Austria", + "country_code":"AT", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "8":{ + "id":370344, + "value":"Yes", + "question_id":13045, + "created_at":"2017-11-24T16:00:46.183+01:00", + "updated_at":"2017-11-24T16:00:46.183+01:00", + "response_id":null, + "nren_id":8, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"CESNET", + "country_name":"Czech Rep.", + "country_code":"CZ", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "52":{ + "id":370714, + "value":"No", + "question_id":13045, + "created_at":"2017-11-27T09:30:54.454+01:00", + "updated_at":"2017-11-27T09:30:54.454+01:00", + "response_id":null, + "nren_id":52, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"RoEduNet", + "country_name":"Romania", + "country_code":"RO", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "44":{ + "id":371318, + "value":"No", + "question_id":13045, + "created_at":"2017-11-27T14:30:54.997+01:00", + "updated_at":"2017-11-27T14:30:54.997+01:00", + "response_id":null, + "nren_id":44, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"ULAKBIM", + "country_name":"Turkey", + "country_code":"TR", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "17":{ + "id":371708, + "value":"No", + "question_id":13045, + "created_at":"2017-11-28T13:06:46.211+01:00", + "updated_at":"2017-11-28T13:06:46.211+01:00", + "response_id":null, + "nren_id":17, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"GRNET S.A.", + "country_name":"Greece", + "country_code":"GR", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "35":{ + "id":371859, + "value":"No", + "question_id":13045, + "created_at":"2017-11-28T14:54:17.819+01:00", + "updated_at":"2017-11-28T14:54:17.819+01:00", + "response_id":null, + "nren_id":35, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"FCCN", + "country_name":"Portugal", + "country_code":"PT", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "21":{ + "id":372237, + "value":"No", + "question_id":13045, + "created_at":"2017-11-29T12:03:24.506+01:00", + "updated_at":"2017-11-29T12:03:24.506+01:00", + "response_id":null, + "nren_id":21, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"HEAnet", + "country_name":"Ireland", + "country_code":"IE", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "13":{ + "id":372578, + "value":"Yes", + "question_id":13045, + "created_at":"2017-11-29T21:33:57.264+01:00", + "updated_at":"2017-11-29T21:33:57.264+01:00", + "response_id":null, + "nren_id":13, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"RENATER", + "country_name":"France", + "country_code":"FR", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "100":{ + "id":373650, + "value":"Yes", + "question_id":13045, + "created_at":"2017-12-04T17:51:52.886+01:00", + "updated_at":"2017-12-04T17:51:52.886+01:00", + "response_id":null, + "nren_id":100, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"MREN", + "country_name":"Montenegro", + "country_code":"ME", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "200":{ + "id":374034, + "value":"Yes", + "question_id":13045, + "created_at":"2017-12-06T06:56:53.394+01:00", + "updated_at":"2017-12-06T06:56:53.394+01:00", + "response_id":null, + "nren_id":200, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"ASNET-AM", + "country_name":"Armenia", + "country_code":"AM", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "45":{ + "id":374242, + "value":"Yes", + "question_id":13045, + "created_at":"2017-12-06T11:03:33.448+01:00", + "updated_at":"2017-12-06T11:03:33.448+01:00", + "response_id":null, + "nren_id":45, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"URAN", + "country_name":"Ukraine", + "country_code":"UA", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "39":{ + "id":374652, + "value":"Yes", + "question_id":13045, + "created_at":"2017-12-13T09:31:35.518+01:00", + "updated_at":"2017-12-13T09:31:35.518+01:00", + "response_id":null, + "nren_id":39, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"ARNES", + "country_name":"Slovenia", + "country_code":"SI", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "49":{ + "id":374984, + "value":"No", + "question_id":13045, + "created_at":"2017-12-14T14:17:27.885+01:00", + "updated_at":"2017-12-14T14:17:27.885+01:00", + "response_id":null, + "nren_id":49, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"AzScienceNet", + "country_name":"Azerbaijan", + "country_code":"AZ", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "34":{ + "id":375402, + "value":"Yes", + "question_id":13045, + "created_at":"2017-12-28T10:01:40.446+01:00", + "updated_at":"2017-12-28T10:01:40.446+01:00", + "response_id":null, + "nren_id":34, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"PIONIER", + "country_name":"Poland", + "country_code":"PL", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "40":{ + "id":375813, + "value":"", + "question_id":13045, + "created_at":"2018-01-22T00:47:53.323+01:00", + "updated_at":"2018-01-22T00:47:53.323+01:00", + "response_id":null, + "nren_id":40, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"RedIRIS", + "country_name":"Spain", + "country_code":"ES", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "1":{ + "id":376908, + "value":"", + "question_id":13045, + "created_at":"2018-04-26T10:04:29.972+02:00", + "updated_at":"2018-04-26T10:04:29.972+02:00", + "response_id":null, + "nren_id":1, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"ANA", + "country_name":"Albania", + "country_code":"AL", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "48":{ + "id":376909, + "value":"", + "question_id":13045, + "created_at":"2018-04-26T10:04:29.981+02:00", + "updated_at":"2018-04-26T10:04:29.981+02:00", + "response_id":null, + "nren_id":48, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"AMRES", + "country_name":"Serbia", + "country_code":"RS", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "5":{ + "id":376910, + "value":"", + "question_id":13045, + "created_at":"2018-04-26T10:04:29.991+02:00", + "updated_at":"2018-04-26T10:04:29.991+02:00", + "response_id":null, + "nren_id":5, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"Belnet", + "country_name":"Belgium", + "country_code":"BE", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "58":{ + "id":376911, + "value":"", + "question_id":13045, + "created_at":"2018-04-26T10:04:29.998+02:00", + "updated_at":"2018-04-26T10:04:29.998+02:00", + "response_id":null, + "nren_id":58, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"BREN", + "country_name":"Bulgaria", + "country_code":"BG", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "9":{ + "id":376913, + "value":"", + "question_id":13045, + "created_at":"2018-04-26T10:04:30.016+02:00", + "updated_at":"2018-04-26T10:04:30.016+02:00", + "response_id":null, + "nren_id":9, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"DeIC", + "country_name":"Denmark", + "country_code":"DK", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "27":{ + "id":376915, + "value":"", + "question_id":13045, + "created_at":"2018-04-26T10:04:30.040+02:00", + "updated_at":"2018-04-26T10:04:30.040+02:00", + "response_id":null, + "nren_id":27, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"LITNET", + "country_name":"Lithuania", + "country_code":"LT", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "14":{ + "id":376916, + "value":"", + "question_id":13045, + "created_at":"2018-04-26T10:04:30.048+02:00", + "updated_at":"2018-04-26T10:04:30.048+02:00", + "response_id":null, + "nren_id":14, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"MARnet", + "country_name":"Macedonia", + "country_code":"MK", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "28":{ + "id":376917, + "value":"", + "question_id":13045, + "created_at":"2018-04-26T10:04:30.061+02:00", + "updated_at":"2018-04-26T10:04:30.061+02:00", + "response_id":null, + "nren_id":28, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"RESTENA", + "country_name":"Luxembourg", + "country_code":"LU", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "19":{ + "id":376918, + "value":"", + "question_id":13045, + "created_at":"2018-04-26T10:04:30.069+02:00", + "updated_at":"2018-04-26T10:04:30.069+02:00", + "response_id":null, + "nren_id":19, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"RHnet", + "country_name":"Iceland", + "country_code":"IS", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "38":{ + "id":376919, + "value":"", + "question_id":13045, + "created_at":"2018-04-26T10:04:30.078+02:00", + "updated_at":"2018-04-26T10:04:30.078+02:00", + "response_id":null, + "nren_id":38, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"SANET", + "country_name":"Slovakia", + "country_code":"SK", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "29":{ + "id":376921, + "value":"", + "question_id":13045, + "created_at":"2018-04-26T10:04:30.105+02:00", + "updated_at":"2018-04-26T10:04:30.105+02:00", + "response_id":null, + "nren_id":29, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"UoM/RicerkaNet", + "country_name":"Malta", + "country_code":"MT", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "6":{ + "id":383903, + "value":"Yes", + "question_id":13045, + "created_at":"2017-12-05T15:44:53.872+01:00", + "updated_at":"2017-12-05T15:44:53.872+01:00", + "response_id":null, + "nren_id":6, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"CARNET", + "country_name":"Croatia", + "country_code":"HR", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "41":{ + "id":618247, + "value":"Yes", + "question_id":13045, + "created_at":"2018-10-29T08:16:02.888+01:00", + "updated_at":"2018-10-29T08:16:02.888+01:00", + "response_id":null, + "nren_id":41, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"SUNET", + "country_name":"Sweden", + "country_code":"SE", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "30":{ + "id":636522, + "value":"Planned", + "question_id":13045, + "created_at":"2018-10-29T19:54:46.788+01:00", + "updated_at":"2018-10-29T19:54:46.788+01:00", + "response_id":null, + "nren_id":30, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"RENAM", + "country_name":"Moldova", + "country_code":"MD", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "51":{ + "id":376922, + "value":"", + "question_id":13045, + "created_at":"2018-04-26T10:04:30.115+02:00", + "updated_at":"2018-04-26T10:04:30.115+02:00", + "response_id":null, + "nren_id":51, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"LANET", + "country_name":"Latvia", + "country_code":"LV", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "46":{ + "id":1470712, + "value":"Yes", + "question_id":13045, + "created_at":"2020-10-16T17:52:36.474+02:00", + "updated_at":"2020-10-16T17:52:36.474+02:00", + "response_id":null, + "nren_id":46, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"Jisc", + "country_name":"United Kingdom", + "country_code":"GB", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "23":{ + "id":1488868, + "value":"Yes", + "question_id":13045, + "created_at":"2020-11-27T10:53:10.598+01:00", + "updated_at":"2020-11-27T10:53:10.598+01:00", + "response_id":null, + "nren_id":23, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"GARR", + "country_name":"Italy", + "country_code":"IT", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + }, + "11":{ + "id":1494273, + "value":"No", + "question_id":13045, + "created_at":"2021-01-14T15:01:56.574+01:00", + "updated_at":"2021-01-14T15:01:56.574+01:00", + "response_id":null, + "nren_id":11, + "compendium_id":23, + "question_style":"MULTIPLE_CHOICE", + "identifier":"saas", + "title":"Do you offer Software as a Service?", + "nren_abbreviation":"EENet", + "country_name":"Estonia", + "country_code":"EE", + "public":true, + "short":"SaaS", + "title_detailed":"Software as a service e.g. GoogleApps for Education.", + "tags":[ + "storage and hosting", + "professional" + ], + "url":null, + "status":2, + "kpi":[ + + ] + } + } + ] +} \ No newline at end of file diff --git a/compendium_v2/environment.py b/compendium_v2/environment.py new file mode 100644 index 0000000000000000000000000000000000000000..6c05da27f0e94fe10ac5c37be7081a4a77b500b1 --- /dev/null +++ b/compendium_v2/environment.py @@ -0,0 +1,54 @@ +import json +import logging.config +import os + + +LOGGING_DEFAULT_CONFIG = { + 'version': 1, + 'disable_existing_loggers': False, + 'formatters': { + 'simple': { + 'format': '%(asctime)s - %(name)s ' + '(%(lineno)d) - %(levelname)s - %(message)s' + } + }, + + 'handlers': { + 'console': { + 'class': 'logging.StreamHandler', + 'level': 'DEBUG', + 'formatter': 'simple', + 'stream': 'ext://sys.stdout' + } + + }, + + 'loggers': { + 'compendium_v2': { + 'level': 'DEBUG', + 'handlers': ['console'], + 'propagate': False + } + }, + + 'root': { + 'level': 'WARNING', + 'handlers': ['console'] + } +} + + +def setup_logging(): + """ + set up logging using the configured filename + + if LOGGING_CONFIG is defined in the environment, use this for + the filename, otherwise use LOGGING_DEFAULT_CONFIG + """ + logging_config = LOGGING_DEFAULT_CONFIG + if 'LOGGING_CONFIG' in os.environ: + filename = os.environ['LOGGING_CONFIG'] + with open(filename) as f: + logging_config = json.loads(f.read()) + + logging.config.dictConfig(logging_config) diff --git a/compendium_v2/errors.log b/compendium_v2/errors.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/compendium_v2/info.log b/compendium_v2/info.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/compendium_v2/routes/__init__.py b/compendium_v2/routes/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/compendium_v2/routes/api.py b/compendium_v2/routes/api.py new file mode 100644 index 0000000000000000000000000000000000000000..7d224944bad6e49b444daa8e7c73f419bff4eff7 --- /dev/null +++ b/compendium_v2/routes/api.py @@ -0,0 +1,85 @@ +""" +API Endpoints +========================= + +.. contents:: :local: + +/api/things +--------------------- + +.. autofunction:: compendium_v2.routes.api.things + +""" +import binascii +import hashlib +import random +import time + +from flask import Blueprint, jsonify +from compendium_v2.routes import common + +routes = Blueprint("compendium-v2-api", __name__) + + +THING_LIST_SCHEMA = { + '$schema': 'http://json-schema.org/draft-07/schema#', + + 'definitions': { + 'thing': { + 'type': 'object', + 'properties': { + 'id': {'type': 'string'}, + 'time': {'type': 'number'}, + 'state': {'type': 'boolean'}, + 'data1': {'type': 'string'}, + 'data2': {'type': 'string'}, + 'data3': {'type': 'string'} + }, + 'required': ['id', 'time', 'state', 'data1', 'data2', 'data3'], + 'additionalProperties': False + } + }, + + 'type': 'array', + 'items': {'$ref': '#/definitions/thing'} +} + + +@routes.after_request +def after_request(resp): + return common.after_request(resp) + + +@routes.route("/things", methods=['GET', 'POST']) +@common.require_accepts_json +def things(): + """ + handler for /api/things requests + + response will be formatted as: + + .. asjson:: + compendium_v2.routes.api.THING_LIST_SCHEMA + + :return: + """ + + def _hash(s, length): + m = hashlib.sha256() + m.update(s.encode('utf-8')) + digest = binascii.b2a_hex(m.digest()).decode('utf-8') + return digest[-length:].upper() + + def _make_thing(idx): + six_months = 24 * 3600 * 180 + return { + 'id': _hash(f'id-{idx}', 4), + 'time': int(time.time() + random.randint(-six_months, six_months)), + 'state': bool(idx % 2), + 'data1': _hash(f'data1-{idx}', 2), + 'data2': _hash(f'data2-{idx}', 8), + 'data3': _hash(f'data3-{idx}', 32) + } + + response = map(_make_thing, range(20)) + return jsonify(list(response)) diff --git a/compendium_v2/routes/common.py b/compendium_v2/routes/common.py new file mode 100644 index 0000000000000000000000000000000000000000..a2fcf12030760b73caef4521b2fbad4cc266c7f7 --- /dev/null +++ b/compendium_v2/routes/common.py @@ -0,0 +1,53 @@ +""" +Utilities used by multiple route blueprints. +""" +import functools +import logging +from flask import request, Response + +logger = logging.getLogger(__name__) +_DECODE_TYPE_XML = 'xml' +_DECODE_TYPE_JSON = 'json' + + +def require_accepts_json(f): + """ + used as a route handler decorator to return an error + unless the request allows responses with type "application/json" + :param f: the function to be decorated + :return: the decorated function + """ + @functools.wraps(f) + def decorated_function(*args, **kwargs): + # TODO: use best_match to disallow */* ...? + if not request.accept_mimetypes.accept_json: + return Response( + response="response will be json", + status=406, + mimetype="text/html") + return f(*args, **kwargs) + return decorated_function + + +def after_request(response): + """ + Generic function to do additional logging of requests & responses. + + :param response: + :return: + """ + if response.status_code != 200: + + try: + data = response.data.decode('utf-8') + except Exception: + # never expected to happen, but we don't want any failures here + logging.exception('INTERNAL DECODING ERROR') + data = 'decoding error (see logs)' + + logger.warning('"%s %s" "%s" %s' % ( + request.method, + request.path, + data, + str(response.status_code))) + return response diff --git a/compendium_v2/routes/default.py b/compendium_v2/routes/default.py new file mode 100644 index 0000000000000000000000000000000000000000..806f8e4bc8873f9c4faa3cd3c592ab864cc2f4bf --- /dev/null +++ b/compendium_v2/routes/default.py @@ -0,0 +1,68 @@ +""" +Default Endpoints +========================= + +.. contents:: :local: + +/version +--------------------- + +.. autofunction:: compendium_v2.routes.default.version + +""" +import pkg_resources + +from flask import Blueprint, jsonify, render_template +from compendium_v2.routes import common + +routes = Blueprint("compendium-v2-default", __name__) +API_VERSION = '0.1' + +VERSION_SCHEMA = { + '$schema': 'http://json-schema.org/draft-07/schema#', + + 'type': 'object', + 'properties': { + 'api': { + 'type': 'string', + 'pattern': r'\d+\.\d+' + }, + 'module': { + 'type': 'string', + 'pattern': r'\d+\.\d+' + } + }, + 'required': ['api', 'module'], + 'additionalProperties': False +} + + +@routes.after_request +def after_request(resp): + return common.after_request(resp) + + +@routes.route("/", methods=['GET']) +def index(): + return render_template('index.html') + + +@routes.route("/version", methods=['GET', 'POST']) +@common.require_accepts_json +def version(): + """ + handler for /version requests + + response will be formatted as: + + .. asjson:: + compendium_v2.routes.default.VERSION_SCHEMA + + :return: + """ + version_params = { + 'api': API_VERSION, + 'module': + pkg_resources.get_distribution('compendium-v2').version + } + return jsonify(version_params) diff --git a/compendium_v2/routes/service_matrix.py b/compendium_v2/routes/service_matrix.py new file mode 100644 index 0000000000000000000000000000000000000000..41066b8e86b344d931d33c95c89cc558218bfb45 --- /dev/null +++ b/compendium_v2/routes/service_matrix.py @@ -0,0 +1,83 @@ +""" +Service Matrix Endpoints +========================= + +These endpoints are intended for getting service matrix. + +.. contents:: :local: + +/service-matrix +--------------------- + +.. autofunction:: compendium_v2.routes.service_matrix + +""" +import json +import logging +import os +from flask import Blueprint +from compendium_v2.routes import common + + +SERVICE_MATRIX_SCHEMA = { + '$schema': 'http://json-schema.org/draft-07/schema#', + "type": "object", + "properties": { + "key": { + "type": "string" + }, + "nrens": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "nren_id": { + "type": "integer" + }, + "tags": { + "type": "array", + "items": {} + } + }, + "required": [ + "name", + "nren_id", + "tags" + ], + 'additionalProperties': True + } + } + } +} + +DUMMY_DATA_FILENAME = os.path.abspath(os.path.join( + os.path.dirname(__file__), + '..', + 'datasources', + 'dummy-service-matrix.json' +)) +routes = Blueprint("compendium-v2-service-matrix", __name__) +logger = logging.getLogger(__name__) + +file_name = open(DUMMY_DATA_FILENAME) + +service_matrix_response = json.loads(file_name.read()) + + +@routes.route("", methods=['GET']) +@common.require_accepts_json +def get_service_matrix(): + """ + handler for /service-matrix requests + + response will be formatted as: + + .. asjson:: + compendium_v2.routes.api.THING_LIST_SCHEMA + + :return: + """ + return service_matrix_response diff --git a/compendium_v2/services/__init__.py b/compendium_v2/services/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/compendium_v2/static/bundle.js b/compendium_v2/static/bundle.js new file mode 100644 index 0000000000000000000000000000000000000000..dd57c3750ae4d71476551d16b16f8283a010ac3b --- /dev/null +++ b/compendium_v2/static/bundle.js @@ -0,0 +1,2 @@ +/*! For license information please see bundle.js.LICENSE.txt */ +(()=>{var e={99:(e,t,n)=>{"use strict";n.d(t,{Z:()=>s});var r=n(645),o=n.n(r),i=n(667),l=n.n(i),a=n(121),u=o()((function(e){return e[1]})),c=l()(a.Z);u.push([e.id,"table{min-width:650}thead{background-color:#d3d3d3}.state_true{background-color:#90ee90}.state_false{background-color:red}.title-background{background-image:url("+c+");background-color:#064c6e;vertical-align:center;padding-bottom:15px;padding-bottom:15px}.footer-img{width:55px;height:38px}.footer{margin-top:8px;background-color:#064c6e;font-size:8px;height:75px;color:#000;width:100%;padding:15px;clear:both}.footer-text{color:#fff;margin-left:30px}.px{padding-left:55px}.header-naviagtion{display:flex;justify-content:space-around;align-items:center;min-width:10vh;background:#064c6e;color:#fff}.nav-links{width:50%;display:flex;justify-content:space-around;align-items:center;list-style:none}",""]);const s=u},645:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=e(t);return t[2]?"@media ".concat(t[2]," {").concat(n,"}"):n})).join("")},t.i=function(e,n,r){"string"==typeof e&&(e=[[null,e,""]]);var o={};if(r)for(var i=0;i<this.length;i++){var l=this[i][0];null!=l&&(o[l]=!0)}for(var a=0;a<e.length;a++){var u=[].concat(e[a]);r&&o[u[0]]||(n&&(u[2]?u[2]="".concat(n," and ").concat(u[2]):u[2]=n),t.push(u))}},t}},667:e=>{"use strict";e.exports=function(e,t){return t||(t={}),"string"!=typeof(e=e&&e.__esModule?e.default:e)?e:(/^['"].*['"]$/.test(e)&&(e=e.slice(1,-1)),t.hash&&(e+=t.hash),/["'() \t\n]/.test(e)||t.needQuotes?'"'.concat(e.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):e)}},121:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});const r="images/compendium_header.png"},679:(e,t,n)=>{"use strict";var r=n(864),o={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},i={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},l={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},a={};function u(e){return r.isMemo(e)?l:a[e.$$typeof]||o}a[r.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},a[r.Memo]=l;var c=Object.defineProperty,s=Object.getOwnPropertyNames,f=Object.getOwnPropertySymbols,d=Object.getOwnPropertyDescriptor,p=Object.getPrototypeOf,m=Object.prototype;e.exports=function e(t,n,r){if("string"!=typeof n){if(m){var o=p(n);o&&o!==m&&e(t,o,r)}var l=s(n);f&&(l=l.concat(f(n)));for(var a=u(t),h=u(n),v=0;v<l.length;++v){var y=l[v];if(!(i[y]||r&&r[y]||h&&h[y]||a&&a[y])){var g=d(n,y);try{c(t,y,g)}catch(e){}}}}return t}},418:e=>{"use strict";var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;function o(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var l,a,u=o(e),c=1;c<arguments.length;c++){for(var s in l=Object(arguments[c]))n.call(l,s)&&(u[s]=l[s]);if(t){a=t(l);for(var f=0;f<a.length;f++)r.call(l,a[f])&&(u[a[f]]=l[a[f]])}}return u}},703:(e,t,n)=>{"use strict";var r=n(414);function o(){}function i(){}i.resetWarningCache=o,e.exports=function(){function e(e,t,n,o,i,l){if(l!==r){var a=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw a.name="Invariant Violation",a}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:i,resetWarningCache:o};return n.PropTypes=n,n}},697:(e,t,n)=>{e.exports=n(703)()},414:e=>{"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},448:(e,t,n)=>{"use strict";var r=n(294),o=n(418),i=n(840);function l(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}if(!r)throw Error(l(227));function a(e,t,n,r,o,i,l,a,u){var c=Array.prototype.slice.call(arguments,3);try{t.apply(n,c)}catch(e){this.onError(e)}}var u=!1,c=null,s=!1,f=null,d={onError:function(e){u=!0,c=e}};function p(e,t,n,r,o,i,l,s,f){u=!1,c=null,a.apply(d,arguments)}var m=null,h=null,v=null;function y(e,t,n){var r=e.type||"unknown-event";e.currentTarget=v(n),function(e,t,n,r,o,i,a,d,m){if(p.apply(this,arguments),u){if(!u)throw Error(l(198));var h=c;u=!1,c=null,s||(s=!0,f=h)}}(r,t,void 0,e),e.currentTarget=null}var g=null,b={};function w(){if(g)for(var e in b){var t=b[e],n=g.indexOf(e);if(!(-1<n))throw Error(l(96,e));if(!k[n]){if(!t.extractEvents)throw Error(l(97,e));for(var r in k[n]=t,n=t.eventTypes){var o=void 0,i=n[r],a=t,u=r;if(E.hasOwnProperty(u))throw Error(l(99,u));E[u]=i;var c=i.phasedRegistrationNames;if(c){for(o in c)c.hasOwnProperty(o)&&x(c[o],a,u);o=!0}else i.registrationName?(x(i.registrationName,a,u),o=!0):o=!1;if(!o)throw Error(l(98,r,e))}}}}function x(e,t,n){if(T[e])throw Error(l(100,e));T[e]=t,S[e]=t.eventTypes[n].dependencies}var k=[],E={},T={},S={};function C(e){var t,n=!1;for(t in e)if(e.hasOwnProperty(t)){var r=e[t];if(!b.hasOwnProperty(t)||b[t]!==r){if(b[t])throw Error(l(102,t));b[t]=r,n=!0}}n&&w()}var _=!("undefined"==typeof window||void 0===window.document||void 0===window.document.createElement),P=null,N=null,O=null;function R(e){if(e=h(e)){if("function"!=typeof P)throw Error(l(280));var t=e.stateNode;t&&(t=m(t),P(e.stateNode,e.type,t))}}function M(e){N?O?O.push(e):O=[e]:N=e}function z(){if(N){var e=N,t=O;if(O=N=null,R(e),t)for(e=0;e<t.length;e++)R(t[e])}}function I(e,t){return e(t)}function F(e,t,n,r,o){return e(t,n,r,o)}function A(){}var L=I,D=!1,j=!1;function U(){null===N&&null===O||(A(),z())}function $(e,t,n){if(j)return e(t,n);j=!0;try{return L(e,t,n)}finally{j=!1,U()}}var V=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,W=Object.prototype.hasOwnProperty,B={},Q={};function H(e,t,n,r,o,i){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=r,this.attributeNamespace=o,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=i}var K={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach((function(e){K[e]=new H(e,0,!1,e,null,!1)})),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach((function(e){var t=e[0];K[t]=new H(t,1,!1,e[1],null,!1)})),["contentEditable","draggable","spellCheck","value"].forEach((function(e){K[e]=new H(e,2,!1,e.toLowerCase(),null,!1)})),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach((function(e){K[e]=new H(e,2,!1,e,null,!1)})),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach((function(e){K[e]=new H(e,3,!1,e.toLowerCase(),null,!1)})),["checked","multiple","muted","selected"].forEach((function(e){K[e]=new H(e,3,!0,e,null,!1)})),["capture","download"].forEach((function(e){K[e]=new H(e,4,!1,e,null,!1)})),["cols","rows","size","span"].forEach((function(e){K[e]=new H(e,6,!1,e,null,!1)})),["rowSpan","start"].forEach((function(e){K[e]=new H(e,5,!1,e.toLowerCase(),null,!1)}));var q=/[\-:]([a-z])/g;function Y(e){return e[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach((function(e){var t=e.replace(q,Y);K[t]=new H(t,1,!1,e,null,!1)})),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach((function(e){var t=e.replace(q,Y);K[t]=new H(t,1,!1,e,"http://www.w3.org/1999/xlink",!1)})),["xml:base","xml:lang","xml:space"].forEach((function(e){var t=e.replace(q,Y);K[t]=new H(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1)})),["tabIndex","crossOrigin"].forEach((function(e){K[e]=new H(e,1,!1,e.toLowerCase(),null,!1)})),K.xlinkHref=new H("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0),["src","href","action","formAction"].forEach((function(e){K[e]=new H(e,1,!1,e.toLowerCase(),null,!0)}));var X=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;function G(e,t,n,r){var o=K.hasOwnProperty(t)?K[t]:null;(null!==o?0===o.type:!r&&2<t.length&&("o"===t[0]||"O"===t[0])&&("n"===t[1]||"N"===t[1]))||(function(e,t,n,r){if(null==t||function(e,t,n,r){if(null!==n&&0===n.type)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return!r&&(null!==n?!n.acceptsBooleans:"data-"!==(e=e.toLowerCase().slice(0,5))&&"aria-"!==e);default:return!1}}(e,t,n,r))return!0;if(r)return!1;if(null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}(t,n,o,r)&&(n=null),r||null===o?function(e){return!!W.call(Q,e)||!W.call(B,e)&&(V.test(e)?Q[e]=!0:(B[e]=!0,!1))}(t)&&(null===n?e.removeAttribute(t):e.setAttribute(t,""+n)):o.mustUseProperty?e[o.propertyName]=null===n?3!==o.type&&"":n:(t=o.attributeName,r=o.attributeNamespace,null===n?e.removeAttribute(t):(n=3===(o=o.type)||4===o&&!0===n?"":""+n,r?e.setAttributeNS(r,t,n):e.setAttribute(t,n))))}X.hasOwnProperty("ReactCurrentDispatcher")||(X.ReactCurrentDispatcher={current:null}),X.hasOwnProperty("ReactCurrentBatchConfig")||(X.ReactCurrentBatchConfig={suspense:null});var Z=/^(.*)[\\\/]/,J="function"==typeof Symbol&&Symbol.for,ee=J?Symbol.for("react.element"):60103,te=J?Symbol.for("react.portal"):60106,ne=J?Symbol.for("react.fragment"):60107,re=J?Symbol.for("react.strict_mode"):60108,oe=J?Symbol.for("react.profiler"):60114,ie=J?Symbol.for("react.provider"):60109,le=J?Symbol.for("react.context"):60110,ae=J?Symbol.for("react.concurrent_mode"):60111,ue=J?Symbol.for("react.forward_ref"):60112,ce=J?Symbol.for("react.suspense"):60113,se=J?Symbol.for("react.suspense_list"):60120,fe=J?Symbol.for("react.memo"):60115,de=J?Symbol.for("react.lazy"):60116,pe=J?Symbol.for("react.block"):60121,me="function"==typeof Symbol&&Symbol.iterator;function he(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=me&&e[me]||e["@@iterator"])?e:null}function ve(e){if(null==e)return null;if("function"==typeof e)return e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case ne:return"Fragment";case te:return"Portal";case oe:return"Profiler";case re:return"StrictMode";case ce:return"Suspense";case se:return"SuspenseList"}if("object"==typeof e)switch(e.$$typeof){case le:return"Context.Consumer";case ie:return"Context.Provider";case ue:var t=e.render;return t=t.displayName||t.name||"",e.displayName||(""!==t?"ForwardRef("+t+")":"ForwardRef");case fe:return ve(e.type);case pe:return ve(e.render);case de:if(e=1===e._status?e._result:null)return ve(e)}return null}function ye(e){var t="";do{e:switch(e.tag){case 3:case 4:case 6:case 7:case 10:case 9:var n="";break e;default:var r=e._debugOwner,o=e._debugSource,i=ve(e.type);n=null,r&&(n=ve(r.type)),r=i,i="",o?i=" (at "+o.fileName.replace(Z,"")+":"+o.lineNumber+")":n&&(i=" (created by "+n+")"),n="\n in "+(r||"Unknown")+i}t+=n,e=e.return}while(e);return t}function ge(e){switch(typeof e){case"boolean":case"number":case"object":case"string":case"undefined":return e;default:return""}}function be(e){var t=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===t||"radio"===t)}function we(e){e._valueTracker||(e._valueTracker=function(e){var t=be(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&void 0!==n&&"function"==typeof n.get&&"function"==typeof n.set){var o=n.get,i=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return o.call(this)},set:function(e){r=""+e,i.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(e){r=""+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}(e))}function xe(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=be(e)?e.checked?"true":"false":e.value),(e=r)!==n&&(t.setValue(e),!0)}function ke(e,t){var n=t.checked;return o({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=n?n:e._wrapperState.initialChecked})}function Ee(e,t){var n=null==t.defaultValue?"":t.defaultValue,r=null!=t.checked?t.checked:t.defaultChecked;n=ge(null!=t.value?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:"checkbox"===t.type||"radio"===t.type?null!=t.checked:null!=t.value}}function Te(e,t){null!=(t=t.checked)&&G(e,"checked",t,!1)}function Se(e,t){Te(e,t);var n=ge(t.value),r=t.type;if(null!=n)"number"===r?(0===n&&""===e.value||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if("submit"===r||"reset"===r)return void e.removeAttribute("value");t.hasOwnProperty("value")?_e(e,t.type,n):t.hasOwnProperty("defaultValue")&&_e(e,t.type,ge(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function Ce(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!("submit"!==r&&"reset"!==r||void 0!==t.value&&null!==t.value))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}""!==(n=e.name)&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,""!==n&&(e.name=n)}function _e(e,t,n){"number"===t&&e.ownerDocument.activeElement===e||(null==n?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}function Pe(e,t){return e=o({children:void 0},t),(t=function(e){var t="";return r.Children.forEach(e,(function(e){null!=e&&(t+=e)})),t}(t.children))&&(e.children=t),e}function Ne(e,t,n,r){if(e=e.options,t){t={};for(var o=0;o<n.length;o++)t["$"+n[o]]=!0;for(n=0;n<e.length;n++)o=t.hasOwnProperty("$"+e[n].value),e[n].selected!==o&&(e[n].selected=o),o&&r&&(e[n].defaultSelected=!0)}else{for(n=""+ge(n),t=null,o=0;o<e.length;o++){if(e[o].value===n)return e[o].selected=!0,void(r&&(e[o].defaultSelected=!0));null!==t||e[o].disabled||(t=e[o])}null!==t&&(t.selected=!0)}}function Oe(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(l(91));return o({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function Re(e,t){var n=t.value;if(null==n){if(n=t.children,t=t.defaultValue,null!=n){if(null!=t)throw Error(l(92));if(Array.isArray(n)){if(!(1>=n.length))throw Error(l(93));n=n[0]}t=n}null==t&&(t=""),n=t}e._wrapperState={initialValue:ge(n)}}function Me(e,t){var n=ge(t.value),r=ge(t.defaultValue);null!=n&&((n=""+n)!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=r&&(e.defaultValue=""+r)}function ze(e){var t=e.textContent;t===e._wrapperState.initialValue&&""!==t&&null!==t&&(e.value=t)}function Ie(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function Fe(e,t){return null==e||"http://www.w3.org/1999/xhtml"===e?Ie(t):"http://www.w3.org/2000/svg"===e&&"foreignObject"===t?"http://www.w3.org/1999/xhtml":e}var Ae,Le,De=(Le=function(e,t){if("http://www.w3.org/2000/svg"!==e.namespaceURI||"innerHTML"in e)e.innerHTML=t;else{for((Ae=Ae||document.createElement("div")).innerHTML="<svg>"+t.valueOf().toString()+"</svg>",t=Ae.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}},"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(e,t,n,r){MSApp.execUnsafeLocalFunction((function(){return Le(e,t)}))}:Le);function je(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}function Ue(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var $e={animationend:Ue("Animation","AnimationEnd"),animationiteration:Ue("Animation","AnimationIteration"),animationstart:Ue("Animation","AnimationStart"),transitionend:Ue("Transition","TransitionEnd")},Ve={},We={};function Be(e){if(Ve[e])return Ve[e];if(!$e[e])return e;var t,n=$e[e];for(t in n)if(n.hasOwnProperty(t)&&t in We)return Ve[e]=n[t];return e}_&&(We=document.createElement("div").style,"AnimationEvent"in window||(delete $e.animationend.animation,delete $e.animationiteration.animation,delete $e.animationstart.animation),"TransitionEvent"in window||delete $e.transitionend.transition);var Qe=Be("animationend"),He=Be("animationiteration"),Ke=Be("animationstart"),qe=Be("transitionend"),Ye="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),Xe=new("function"==typeof WeakMap?WeakMap:Map);function Ge(e){var t=Xe.get(e);return void 0===t&&(t=new Map,Xe.set(e,t)),t}function Ze(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{0!=(1026&(t=e).effectTag)&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function Je(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&null!==(e=e.alternate)&&(t=e.memoizedState),null!==t)return t.dehydrated}return null}function et(e){if(Ze(e)!==e)throw Error(l(188))}function tt(e){if(e=function(e){var t=e.alternate;if(!t){if(null===(t=Ze(e)))throw Error(l(188));return t!==e?null:e}for(var n=e,r=t;;){var o=n.return;if(null===o)break;var i=o.alternate;if(null===i){if(null!==(r=o.return)){n=r;continue}break}if(o.child===i.child){for(i=o.child;i;){if(i===n)return et(o),e;if(i===r)return et(o),t;i=i.sibling}throw Error(l(188))}if(n.return!==r.return)n=o,r=i;else{for(var a=!1,u=o.child;u;){if(u===n){a=!0,n=o,r=i;break}if(u===r){a=!0,r=o,n=i;break}u=u.sibling}if(!a){for(u=i.child;u;){if(u===n){a=!0,n=i,r=o;break}if(u===r){a=!0,r=i,n=o;break}u=u.sibling}if(!a)throw Error(l(189))}}if(n.alternate!==r)throw Error(l(190))}if(3!==n.tag)throw Error(l(188));return n.stateNode.current===n?e:t}(e),!e)return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}function nt(e,t){if(null==t)throw Error(l(30));return null==e?t:Array.isArray(e)?Array.isArray(t)?(e.push.apply(e,t),e):(e.push(t),e):Array.isArray(t)?[e].concat(t):[e,t]}function rt(e,t,n){Array.isArray(e)?e.forEach(t,n):e&&t.call(n,e)}var ot=null;function it(e){if(e){var t=e._dispatchListeners,n=e._dispatchInstances;if(Array.isArray(t))for(var r=0;r<t.length&&!e.isPropagationStopped();r++)y(e,t[r],n[r]);else t&&y(e,t,n);e._dispatchListeners=null,e._dispatchInstances=null,e.isPersistent()||e.constructor.release(e)}}function lt(e){if(null!==e&&(ot=nt(ot,e)),e=ot,ot=null,e){if(rt(e,it),ot)throw Error(l(95));if(s)throw e=f,s=!1,f=null,e}}function at(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}function ut(e){if(!_)return!1;var t=(e="on"+e)in document;return t||((t=document.createElement("div")).setAttribute(e,"return;"),t="function"==typeof t[e]),t}var ct=[];function st(e){e.topLevelType=null,e.nativeEvent=null,e.targetInst=null,e.ancestors.length=0,10>ct.length&&ct.push(e)}function ft(e,t,n,r){if(ct.length){var o=ct.pop();return o.topLevelType=e,o.eventSystemFlags=r,o.nativeEvent=t,o.targetInst=n,o}return{topLevelType:e,eventSystemFlags:r,nativeEvent:t,targetInst:n,ancestors:[]}}function dt(e){var t=e.targetInst,n=t;do{if(!n){e.ancestors.push(n);break}var r=n;if(3===r.tag)r=r.stateNode.containerInfo;else{for(;r.return;)r=r.return;r=3!==r.tag?null:r.stateNode.containerInfo}if(!r)break;5!==(t=n.tag)&&6!==t||e.ancestors.push(n),n=Nn(r)}while(n);for(n=0;n<e.ancestors.length;n++){t=e.ancestors[n];var o=at(e.nativeEvent);r=e.topLevelType;var i=e.nativeEvent,l=e.eventSystemFlags;0===n&&(l|=64);for(var a=null,u=0;u<k.length;u++){var c=k[u];c&&(c=c.extractEvents(r,t,i,o,l))&&(a=nt(a,c))}lt(a)}}function pt(e,t,n){if(!n.has(e)){switch(e){case"scroll":Kt(t,"scroll",!0);break;case"focus":case"blur":Kt(t,"focus",!0),Kt(t,"blur",!0),n.set("blur",null),n.set("focus",null);break;case"cancel":case"close":ut(e)&&Kt(t,e,!0);break;case"invalid":case"submit":case"reset":break;default:-1===Ye.indexOf(e)&&Ht(e,t)}n.set(e,null)}}var mt,ht,vt,yt=!1,gt=[],bt=null,wt=null,xt=null,kt=new Map,Et=new Map,Tt=[],St="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput close cancel copy cut paste click change contextmenu reset submit".split(" "),Ct="focus blur dragenter dragleave mouseover mouseout pointerover pointerout gotpointercapture lostpointercapture".split(" ");function _t(e,t,n,r,o){return{blockedOn:e,topLevelType:t,eventSystemFlags:32|n,nativeEvent:o,container:r}}function Pt(e,t){switch(e){case"focus":case"blur":bt=null;break;case"dragenter":case"dragleave":wt=null;break;case"mouseover":case"mouseout":xt=null;break;case"pointerover":case"pointerout":kt.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":Et.delete(t.pointerId)}}function Nt(e,t,n,r,o,i){return null===e||e.nativeEvent!==i?(e=_t(t,n,r,o,i),null!==t&&null!==(t=On(t))&&ht(t),e):(e.eventSystemFlags|=r,e)}function Ot(e){var t=Nn(e.target);if(null!==t){var n=Ze(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=Je(n)))return e.blockedOn=t,void i.unstable_runWithPriority(e.priority,(function(){vt(n)}))}else if(3===t&&n.stateNode.hydrate)return void(e.blockedOn=3===n.tag?n.stateNode.containerInfo:null)}e.blockedOn=null}function Rt(e){if(null!==e.blockedOn)return!1;var t=Gt(e.topLevelType,e.eventSystemFlags,e.container,e.nativeEvent);if(null!==t){var n=On(t);return null!==n&&ht(n),e.blockedOn=t,!1}return!0}function Mt(e,t,n){Rt(e)&&n.delete(t)}function zt(){for(yt=!1;0<gt.length;){var e=gt[0];if(null!==e.blockedOn){null!==(e=On(e.blockedOn))&&mt(e);break}var t=Gt(e.topLevelType,e.eventSystemFlags,e.container,e.nativeEvent);null!==t?e.blockedOn=t:gt.shift()}null!==bt&&Rt(bt)&&(bt=null),null!==wt&&Rt(wt)&&(wt=null),null!==xt&&Rt(xt)&&(xt=null),kt.forEach(Mt),Et.forEach(Mt)}function It(e,t){e.blockedOn===t&&(e.blockedOn=null,yt||(yt=!0,i.unstable_scheduleCallback(i.unstable_NormalPriority,zt)))}function Ft(e){function t(t){return It(t,e)}if(0<gt.length){It(gt[0],e);for(var n=1;n<gt.length;n++){var r=gt[n];r.blockedOn===e&&(r.blockedOn=null)}}for(null!==bt&&It(bt,e),null!==wt&&It(wt,e),null!==xt&&It(xt,e),kt.forEach(t),Et.forEach(t),n=0;n<Tt.length;n++)(r=Tt[n]).blockedOn===e&&(r.blockedOn=null);for(;0<Tt.length&&null===(n=Tt[0]).blockedOn;)Ot(n),null===n.blockedOn&&Tt.shift()}var At={},Lt=new Map,Dt=new Map,jt=["abort","abort",Qe,"animationEnd",He,"animationIteration",Ke,"animationStart","canplay","canPlay","canplaythrough","canPlayThrough","durationchange","durationChange","emptied","emptied","encrypted","encrypted","ended","ended","error","error","gotpointercapture","gotPointerCapture","load","load","loadeddata","loadedData","loadedmetadata","loadedMetadata","loadstart","loadStart","lostpointercapture","lostPointerCapture","playing","playing","progress","progress","seeking","seeking","stalled","stalled","suspend","suspend","timeupdate","timeUpdate",qe,"transitionEnd","waiting","waiting"];function Ut(e,t){for(var n=0;n<e.length;n+=2){var r=e[n],o=e[n+1],i="on"+(o[0].toUpperCase()+o.slice(1));i={phasedRegistrationNames:{bubbled:i,captured:i+"Capture"},dependencies:[r],eventPriority:t},Dt.set(r,t),Lt.set(r,i),At[o]=i}}Ut("blur blur cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focus focus input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange".split(" "),0),Ut("drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel".split(" "),1),Ut(jt,2);for(var $t="change selectionchange textInput compositionstart compositionend compositionupdate".split(" "),Vt=0;Vt<$t.length;Vt++)Dt.set($t[Vt],0);var Wt=i.unstable_UserBlockingPriority,Bt=i.unstable_runWithPriority,Qt=!0;function Ht(e,t){Kt(t,e,!1)}function Kt(e,t,n){var r=Dt.get(t);switch(void 0===r?2:r){case 0:r=qt.bind(null,t,1,e);break;case 1:r=Yt.bind(null,t,1,e);break;default:r=Xt.bind(null,t,1,e)}n?e.addEventListener(t,r,!0):e.addEventListener(t,r,!1)}function qt(e,t,n,r){D||A();var o=Xt,i=D;D=!0;try{F(o,e,t,n,r)}finally{(D=i)||U()}}function Yt(e,t,n,r){Bt(Wt,Xt.bind(null,e,t,n,r))}function Xt(e,t,n,r){if(Qt)if(0<gt.length&&-1<St.indexOf(e))e=_t(null,e,t,n,r),gt.push(e);else{var o=Gt(e,t,n,r);if(null===o)Pt(e,r);else if(-1<St.indexOf(e))e=_t(o,e,t,n,r),gt.push(e);else if(!function(e,t,n,r,o){switch(t){case"focus":return bt=Nt(bt,e,t,n,r,o),!0;case"dragenter":return wt=Nt(wt,e,t,n,r,o),!0;case"mouseover":return xt=Nt(xt,e,t,n,r,o),!0;case"pointerover":var i=o.pointerId;return kt.set(i,Nt(kt.get(i)||null,e,t,n,r,o)),!0;case"gotpointercapture":return i=o.pointerId,Et.set(i,Nt(Et.get(i)||null,e,t,n,r,o)),!0}return!1}(o,e,t,n,r)){Pt(e,r),e=ft(e,r,null,t);try{$(dt,e)}finally{st(e)}}}}function Gt(e,t,n,r){if(null!==(n=Nn(n=at(r)))){var o=Ze(n);if(null===o)n=null;else{var i=o.tag;if(13===i){if(null!==(n=Je(o)))return n;n=null}else if(3===i){if(o.stateNode.hydrate)return 3===o.tag?o.stateNode.containerInfo:null;n=null}else o!==n&&(n=null)}}e=ft(e,r,n,t);try{$(dt,e)}finally{st(e)}return null}var Zt={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},Jt=["Webkit","ms","Moz","O"];function en(e,t,n){return null==t||"boolean"==typeof t||""===t?"":n||"number"!=typeof t||0===t||Zt.hasOwnProperty(e)&&Zt[e]?(""+t).trim():t+"px"}function tn(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var r=0===n.indexOf("--"),o=en(n,t[n],r);"float"===n&&(n="cssFloat"),r?e.setProperty(n,o):e[n]=o}}Object.keys(Zt).forEach((function(e){Jt.forEach((function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),Zt[t]=Zt[e]}))}));var nn=o({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function rn(e,t){if(t){if(nn[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(l(137,e,""));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(l(60));if("object"!=typeof t.dangerouslySetInnerHTML||!("__html"in t.dangerouslySetInnerHTML))throw Error(l(61))}if(null!=t.style&&"object"!=typeof t.style)throw Error(l(62,""))}}function on(e,t){if(-1===e.indexOf("-"))return"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var ln="http://www.w3.org/1999/xhtml";function an(e,t){var n=Ge(e=9===e.nodeType||11===e.nodeType?e:e.ownerDocument);t=S[t];for(var r=0;r<t.length;r++)pt(t[r],e,n)}function un(){}function cn(e){if(void 0===(e=e||("undefined"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}function sn(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function fn(e,t){var n,r=sn(e);for(e=0;r;){if(3===r.nodeType){if(n=e+r.textContent.length,e<=t&&n>=t)return{node:r,offset:t-e};e=n}e:{for(;r;){if(r.nextSibling){r=r.nextSibling;break e}r=r.parentNode}r=void 0}r=sn(r)}}function dn(e,t){return!(!e||!t)&&(e===t||(!e||3!==e.nodeType)&&(t&&3===t.nodeType?dn(e,t.parentNode):"contains"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}function pn(){for(var e=window,t=cn();t instanceof e.HTMLIFrameElement;){try{var n="string"==typeof t.contentWindow.location.href}catch(e){n=!1}if(!n)break;t=cn((e=t.contentWindow).document)}return t}function mn(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===t||"true"===e.contentEditable)}var hn="$?",vn="$!",yn=null,gn=null;function bn(e,t){switch(e){case"button":case"input":case"select":case"textarea":return!!t.autoFocus}return!1}function wn(e,t){return"textarea"===e||"option"===e||"noscript"===e||"string"==typeof t.children||"number"==typeof t.children||"object"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var xn="function"==typeof setTimeout?setTimeout:void 0,kn="function"==typeof clearTimeout?clearTimeout:void 0;function En(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break}return e}function Tn(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if("$"===n||n===vn||n===hn){if(0===t)return e;t--}else"/$"===n&&t++}e=e.previousSibling}return null}var Sn=Math.random().toString(36).slice(2),Cn="__reactInternalInstance$"+Sn,_n="__reactEventHandlers$"+Sn,Pn="__reactContainere$"+Sn;function Nn(e){var t=e[Cn];if(t)return t;for(var n=e.parentNode;n;){if(t=n[Pn]||n[Cn]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=Tn(e);null!==e;){if(n=e[Cn])return n;e=Tn(e)}return t}n=(e=n).parentNode}return null}function On(e){return!(e=e[Cn]||e[Pn])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function Rn(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(l(33))}function Mn(e){return e[_n]||null}function zn(e){do{e=e.return}while(e&&5!==e.tag);return e||null}function In(e,t){var n=e.stateNode;if(!n)return null;var r=m(n);if(!r)return null;n=r[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(r=!r.disabled)||(r=!("button"===(e=e.type)||"input"===e||"select"===e||"textarea"===e)),e=!r;break e;default:e=!1}if(e)return null;if(n&&"function"!=typeof n)throw Error(l(231,t,typeof n));return n}function Fn(e,t,n){(t=In(e,n.dispatchConfig.phasedRegistrationNames[t]))&&(n._dispatchListeners=nt(n._dispatchListeners,t),n._dispatchInstances=nt(n._dispatchInstances,e))}function An(e){if(e&&e.dispatchConfig.phasedRegistrationNames){for(var t=e._targetInst,n=[];t;)n.push(t),t=zn(t);for(t=n.length;0<t--;)Fn(n[t],"captured",e);for(t=0;t<n.length;t++)Fn(n[t],"bubbled",e)}}function Ln(e,t,n){e&&n&&n.dispatchConfig.registrationName&&(t=In(e,n.dispatchConfig.registrationName))&&(n._dispatchListeners=nt(n._dispatchListeners,t),n._dispatchInstances=nt(n._dispatchInstances,e))}function Dn(e){e&&e.dispatchConfig.registrationName&&Ln(e._targetInst,null,e)}function jn(e){rt(e,An)}var Un=null,$n=null,Vn=null;function Wn(){if(Vn)return Vn;var e,t,n=$n,r=n.length,o="value"in Un?Un.value:Un.textContent,i=o.length;for(e=0;e<r&&n[e]===o[e];e++);var l=r-e;for(t=1;t<=l&&n[r-t]===o[i-t];t++);return Vn=o.slice(e,1<t?1-t:void 0)}function Bn(){return!0}function Qn(){return!1}function Hn(e,t,n,r){for(var o in this.dispatchConfig=e,this._targetInst=t,this.nativeEvent=n,e=this.constructor.Interface)e.hasOwnProperty(o)&&((t=e[o])?this[o]=t(n):"target"===o?this.target=r:this[o]=n[o]);return this.isDefaultPrevented=(null!=n.defaultPrevented?n.defaultPrevented:!1===n.returnValue)?Bn:Qn,this.isPropagationStopped=Qn,this}function Kn(e,t,n,r){if(this.eventPool.length){var o=this.eventPool.pop();return this.call(o,e,t,n,r),o}return new this(e,t,n,r)}function qn(e){if(!(e instanceof this))throw Error(l(279));e.destructor(),10>this.eventPool.length&&this.eventPool.push(e)}function Yn(e){e.eventPool=[],e.getPooled=Kn,e.release=qn}o(Hn.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=Bn)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=Bn)},persist:function(){this.isPersistent=Bn},isPersistent:Qn,destructor:function(){var e,t=this.constructor.Interface;for(e in t)this[e]=null;this.nativeEvent=this._targetInst=this.dispatchConfig=null,this.isPropagationStopped=this.isDefaultPrevented=Qn,this._dispatchInstances=this._dispatchListeners=null}}),Hn.Interface={type:null,target:null,currentTarget:function(){return null},eventPhase:null,bubbles:null,cancelable:null,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:null,isTrusted:null},Hn.extend=function(e){function t(){}function n(){return r.apply(this,arguments)}var r=this;t.prototype=r.prototype;var i=new t;return o(i,n.prototype),n.prototype=i,n.prototype.constructor=n,n.Interface=o({},r.Interface,e),n.extend=r.extend,Yn(n),n},Yn(Hn);var Xn=Hn.extend({data:null}),Gn=Hn.extend({data:null}),Zn=[9,13,27,32],Jn=_&&"CompositionEvent"in window,er=null;_&&"documentMode"in document&&(er=document.documentMode);var tr=_&&"TextEvent"in window&&!er,nr=_&&(!Jn||er&&8<er&&11>=er),rr=String.fromCharCode(32),or={beforeInput:{phasedRegistrationNames:{bubbled:"onBeforeInput",captured:"onBeforeInputCapture"},dependencies:["compositionend","keypress","textInput","paste"]},compositionEnd:{phasedRegistrationNames:{bubbled:"onCompositionEnd",captured:"onCompositionEndCapture"},dependencies:"blur compositionend keydown keypress keyup mousedown".split(" ")},compositionStart:{phasedRegistrationNames:{bubbled:"onCompositionStart",captured:"onCompositionStartCapture"},dependencies:"blur compositionstart keydown keypress keyup mousedown".split(" ")},compositionUpdate:{phasedRegistrationNames:{bubbled:"onCompositionUpdate",captured:"onCompositionUpdateCapture"},dependencies:"blur compositionupdate keydown keypress keyup mousedown".split(" ")}},ir=!1;function lr(e,t){switch(e){case"keyup":return-1!==Zn.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"blur":return!0;default:return!1}}function ar(e){return"object"==typeof(e=e.detail)&&"data"in e?e.data:null}var ur=!1,cr={eventTypes:or,extractEvents:function(e,t,n,r){var o;if(Jn)e:{switch(e){case"compositionstart":var i=or.compositionStart;break e;case"compositionend":i=or.compositionEnd;break e;case"compositionupdate":i=or.compositionUpdate;break e}i=void 0}else ur?lr(e,n)&&(i=or.compositionEnd):"keydown"===e&&229===n.keyCode&&(i=or.compositionStart);return i?(nr&&"ko"!==n.locale&&(ur||i!==or.compositionStart?i===or.compositionEnd&&ur&&(o=Wn()):($n="value"in(Un=r)?Un.value:Un.textContent,ur=!0)),i=Xn.getPooled(i,t,n,r),(o||null!==(o=ar(n)))&&(i.data=o),jn(i),o=i):o=null,(e=tr?function(e,t){switch(e){case"compositionend":return ar(t);case"keypress":return 32!==t.which?null:(ir=!0,rr);case"textInput":return(e=t.data)===rr&&ir?null:e;default:return null}}(e,n):function(e,t){if(ur)return"compositionend"===e||!Jn&&lr(e,t)?(e=Wn(),Vn=$n=Un=null,ur=!1,e):null;switch(e){case"paste":default:return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"compositionend":return nr&&"ko"!==t.locale?null:t.data}}(e,n))?((t=Gn.getPooled(or.beforeInput,t,n,r)).data=e,jn(t)):t=null,null===o?t:null===t?o:[o,t]}},sr={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function fr(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!sr[e.type]:"textarea"===t}var dr={change:{phasedRegistrationNames:{bubbled:"onChange",captured:"onChangeCapture"},dependencies:"blur change click focus input keydown keyup selectionchange".split(" ")}};function pr(e,t,n){return(e=Hn.getPooled(dr.change,e,t,n)).type="change",M(n),jn(e),e}var mr=null,hr=null;function vr(e){lt(e)}function yr(e){if(xe(Rn(e)))return e}function gr(e,t){if("change"===e)return t}var br=!1;function wr(){mr&&(mr.detachEvent("onpropertychange",xr),hr=mr=null)}function xr(e){if("value"===e.propertyName&&yr(hr))if(e=pr(hr,e,at(e)),D)lt(e);else{D=!0;try{I(vr,e)}finally{D=!1,U()}}}function kr(e,t,n){"focus"===e?(wr(),hr=n,(mr=t).attachEvent("onpropertychange",xr)):"blur"===e&&wr()}function Er(e){if("selectionchange"===e||"keyup"===e||"keydown"===e)return yr(hr)}function Tr(e,t){if("click"===e)return yr(t)}function Sr(e,t){if("input"===e||"change"===e)return yr(t)}_&&(br=ut("input")&&(!document.documentMode||9<document.documentMode));var Cr={eventTypes:dr,_isInputEventSupported:br,extractEvents:function(e,t,n,r){var o=t?Rn(t):window,i=o.nodeName&&o.nodeName.toLowerCase();if("select"===i||"input"===i&&"file"===o.type)var l=gr;else if(fr(o))if(br)l=Sr;else{l=Er;var a=kr}else(i=o.nodeName)&&"input"===i.toLowerCase()&&("checkbox"===o.type||"radio"===o.type)&&(l=Tr);if(l&&(l=l(e,t)))return pr(l,n,r);a&&a(e,o,t),"blur"===e&&(e=o._wrapperState)&&e.controlled&&"number"===o.type&&_e(o,"number",o.value)}},_r=Hn.extend({view:null,detail:null}),Pr={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function Nr(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=Pr[e])&&!!t[e]}function Or(){return Nr}var Rr=0,Mr=0,zr=!1,Ir=!1,Fr=_r.extend({screenX:null,screenY:null,clientX:null,clientY:null,pageX:null,pageY:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,getModifierState:Or,button:null,buttons:null,relatedTarget:function(e){return e.relatedTarget||(e.fromElement===e.srcElement?e.toElement:e.fromElement)},movementX:function(e){if("movementX"in e)return e.movementX;var t=Rr;return Rr=e.screenX,zr?"mousemove"===e.type?e.screenX-t:0:(zr=!0,0)},movementY:function(e){if("movementY"in e)return e.movementY;var t=Mr;return Mr=e.screenY,Ir?"mousemove"===e.type?e.screenY-t:0:(Ir=!0,0)}}),Ar=Fr.extend({pointerId:null,width:null,height:null,pressure:null,tangentialPressure:null,tiltX:null,tiltY:null,twist:null,pointerType:null,isPrimary:null}),Lr={mouseEnter:{registrationName:"onMouseEnter",dependencies:["mouseout","mouseover"]},mouseLeave:{registrationName:"onMouseLeave",dependencies:["mouseout","mouseover"]},pointerEnter:{registrationName:"onPointerEnter",dependencies:["pointerout","pointerover"]},pointerLeave:{registrationName:"onPointerLeave",dependencies:["pointerout","pointerover"]}},Dr={eventTypes:Lr,extractEvents:function(e,t,n,r,o){var i="mouseover"===e||"pointerover"===e,l="mouseout"===e||"pointerout"===e;if(i&&0==(32&o)&&(n.relatedTarget||n.fromElement)||!l&&!i)return null;if(i=r.window===r?r:(i=r.ownerDocument)?i.defaultView||i.parentWindow:window,l?(l=t,null!==(t=(t=n.relatedTarget||n.toElement)?Nn(t):null)&&(t!==Ze(t)||5!==t.tag&&6!==t.tag)&&(t=null)):l=null,l===t)return null;if("mouseout"===e||"mouseover"===e)var a=Fr,u=Lr.mouseLeave,c=Lr.mouseEnter,s="mouse";else"pointerout"!==e&&"pointerover"!==e||(a=Ar,u=Lr.pointerLeave,c=Lr.pointerEnter,s="pointer");if(e=null==l?i:Rn(l),i=null==t?i:Rn(t),(u=a.getPooled(u,l,n,r)).type=s+"leave",u.target=e,u.relatedTarget=i,(n=a.getPooled(c,t,n,r)).type=s+"enter",n.target=i,n.relatedTarget=e,s=t,(r=l)&&s)e:{for(c=s,l=0,e=a=r;e;e=zn(e))l++;for(e=0,t=c;t;t=zn(t))e++;for(;0<l-e;)a=zn(a),l--;for(;0<e-l;)c=zn(c),e--;for(;l--;){if(a===c||a===c.alternate)break e;a=zn(a),c=zn(c)}a=null}else a=null;for(c=a,a=[];r&&r!==c&&(null===(l=r.alternate)||l!==c);)a.push(r),r=zn(r);for(r=[];s&&s!==c&&(null===(l=s.alternate)||l!==c);)r.push(s),s=zn(s);for(s=0;s<a.length;s++)Ln(a[s],"bubbled",u);for(s=r.length;0<s--;)Ln(r[s],"captured",n);return 0==(64&o)?[u]:[u,n]}},jr="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},Ur=Object.prototype.hasOwnProperty;function $r(e,t){if(jr(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(r=0;r<n.length;r++)if(!Ur.call(t,n[r])||!jr(e[n[r]],t[n[r]]))return!1;return!0}var Vr=_&&"documentMode"in document&&11>=document.documentMode,Wr={select:{phasedRegistrationNames:{bubbled:"onSelect",captured:"onSelectCapture"},dependencies:"blur contextmenu dragend focus keydown keyup mousedown mouseup selectionchange".split(" ")}},Br=null,Qr=null,Hr=null,Kr=!1;function qr(e,t){var n=t.window===t?t.document:9===t.nodeType?t:t.ownerDocument;return Kr||null==Br||Br!==cn(n)?null:(n="selectionStart"in(n=Br)&&mn(n)?{start:n.selectionStart,end:n.selectionEnd}:{anchorNode:(n=(n.ownerDocument&&n.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:n.anchorOffset,focusNode:n.focusNode,focusOffset:n.focusOffset},Hr&&$r(Hr,n)?null:(Hr=n,(e=Hn.getPooled(Wr.select,Qr,e,t)).type="select",e.target=Br,jn(e),e))}var Yr={eventTypes:Wr,extractEvents:function(e,t,n,r,o,i){if(!(i=!(o=i||(r.window===r?r.document:9===r.nodeType?r:r.ownerDocument)))){e:{o=Ge(o),i=S.onSelect;for(var l=0;l<i.length;l++)if(!o.has(i[l])){o=!1;break e}o=!0}i=!o}if(i)return null;switch(o=t?Rn(t):window,e){case"focus":(fr(o)||"true"===o.contentEditable)&&(Br=o,Qr=t,Hr=null);break;case"blur":Hr=Qr=Br=null;break;case"mousedown":Kr=!0;break;case"contextmenu":case"mouseup":case"dragend":return Kr=!1,qr(n,r);case"selectionchange":if(Vr)break;case"keydown":case"keyup":return qr(n,r)}return null}},Xr=Hn.extend({animationName:null,elapsedTime:null,pseudoElement:null}),Gr=Hn.extend({clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),Zr=_r.extend({relatedTarget:null});function Jr(e){var t=e.keyCode;return"charCode"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,10===e&&(e=13),32<=e||13===e?e:0}var eo={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},to={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},no=_r.extend({key:function(e){if(e.key){var t=eo[e.key]||e.key;if("Unidentified"!==t)return t}return"keypress"===e.type?13===(e=Jr(e))?"Enter":String.fromCharCode(e):"keydown"===e.type||"keyup"===e.type?to[e.keyCode]||"Unidentified":""},location:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,repeat:null,locale:null,getModifierState:Or,charCode:function(e){return"keypress"===e.type?Jr(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?Jr(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}}),ro=Fr.extend({dataTransfer:null}),oo=_r.extend({touches:null,targetTouches:null,changedTouches:null,altKey:null,metaKey:null,ctrlKey:null,shiftKey:null,getModifierState:Or}),io=Hn.extend({propertyName:null,elapsedTime:null,pseudoElement:null}),lo=Fr.extend({deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:null,deltaMode:null}),ao={eventTypes:At,extractEvents:function(e,t,n,r){var o=Lt.get(e);if(!o)return null;switch(e){case"keypress":if(0===Jr(n))return null;case"keydown":case"keyup":e=no;break;case"blur":case"focus":e=Zr;break;case"click":if(2===n.button)return null;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":e=Fr;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":e=ro;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":e=oo;break;case Qe:case He:case Ke:e=Xr;break;case qe:e=io;break;case"scroll":e=_r;break;case"wheel":e=lo;break;case"copy":case"cut":case"paste":e=Gr;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":e=Ar;break;default:e=Hn}return jn(t=e.getPooled(o,t,n,r)),t}};if(g)throw Error(l(101));g=Array.prototype.slice.call("ResponderEventPlugin SimpleEventPlugin EnterLeaveEventPlugin ChangeEventPlugin SelectEventPlugin BeforeInputEventPlugin".split(" ")),w(),m=Mn,h=On,v=Rn,C({SimpleEventPlugin:ao,EnterLeaveEventPlugin:Dr,ChangeEventPlugin:Cr,SelectEventPlugin:Yr,BeforeInputEventPlugin:cr});var uo=[],co=-1;function so(e){0>co||(e.current=uo[co],uo[co]=null,co--)}function fo(e,t){co++,uo[co]=e.current,e.current=t}var po={},mo={current:po},ho={current:!1},vo=po;function yo(e,t){var n=e.type.contextTypes;if(!n)return po;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var o,i={};for(o in n)i[o]=t[o];return r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=i),i}function go(e){return null!=e.childContextTypes}function bo(){so(ho),so(mo)}function wo(e,t,n){if(mo.current!==po)throw Error(l(168));fo(mo,t),fo(ho,n)}function xo(e,t,n){var r=e.stateNode;if(e=t.childContextTypes,"function"!=typeof r.getChildContext)return n;for(var i in r=r.getChildContext())if(!(i in e))throw Error(l(108,ve(t)||"Unknown",i));return o({},n,{},r)}function ko(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||po,vo=mo.current,fo(mo,e),fo(ho,ho.current),!0}function Eo(e,t,n){var r=e.stateNode;if(!r)throw Error(l(169));n?(e=xo(e,t,vo),r.__reactInternalMemoizedMergedChildContext=e,so(ho),so(mo),fo(mo,e)):so(ho),fo(ho,n)}var To=i.unstable_runWithPriority,So=i.unstable_scheduleCallback,Co=i.unstable_cancelCallback,_o=i.unstable_requestPaint,Po=i.unstable_now,No=i.unstable_getCurrentPriorityLevel,Oo=i.unstable_ImmediatePriority,Ro=i.unstable_UserBlockingPriority,Mo=i.unstable_NormalPriority,zo=i.unstable_LowPriority,Io=i.unstable_IdlePriority,Fo={},Ao=i.unstable_shouldYield,Lo=void 0!==_o?_o:function(){},Do=null,jo=null,Uo=!1,$o=Po(),Vo=1e4>$o?Po:function(){return Po()-$o};function Wo(){switch(No()){case Oo:return 99;case Ro:return 98;case Mo:return 97;case zo:return 96;case Io:return 95;default:throw Error(l(332))}}function Bo(e){switch(e){case 99:return Oo;case 98:return Ro;case 97:return Mo;case 96:return zo;case 95:return Io;default:throw Error(l(332))}}function Qo(e,t){return e=Bo(e),To(e,t)}function Ho(e,t,n){return e=Bo(e),So(e,t,n)}function Ko(e){return null===Do?(Do=[e],jo=So(Oo,Yo)):Do.push(e),Fo}function qo(){if(null!==jo){var e=jo;jo=null,Co(e)}Yo()}function Yo(){if(!Uo&&null!==Do){Uo=!0;var e=0;try{var t=Do;Qo(99,(function(){for(;e<t.length;e++){var n=t[e];do{n=n(!0)}while(null!==n)}})),Do=null}catch(t){throw null!==Do&&(Do=Do.slice(e+1)),So(Oo,qo),t}finally{Uo=!1}}}function Xo(e,t,n){return 1073741821-(1+((1073741821-e+t/10)/(n/=10)|0))*n}function Go(e,t){if(e&&e.defaultProps)for(var n in t=o({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}var Zo={current:null},Jo=null,ei=null,ti=null;function ni(){ti=ei=Jo=null}function ri(e){var t=Zo.current;so(Zo),e.type._context._currentValue=t}function oi(e,t){for(;null!==e;){var n=e.alternate;if(e.childExpirationTime<t)e.childExpirationTime=t,null!==n&&n.childExpirationTime<t&&(n.childExpirationTime=t);else{if(!(null!==n&&n.childExpirationTime<t))break;n.childExpirationTime=t}e=e.return}}function ii(e,t){Jo=e,ti=ei=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(e.expirationTime>=t&&(Ml=!0),e.firstContext=null)}function li(e,t){if(ti!==e&&!1!==t&&0!==t)if("number"==typeof t&&1073741823!==t||(ti=e,t=1073741823),t={context:e,observedBits:t,next:null},null===ei){if(null===Jo)throw Error(l(308));ei=t,Jo.dependencies={expirationTime:0,firstContext:t,responders:null}}else ei=ei.next=t;return e._currentValue}var ai=!1;function ui(e){e.updateQueue={baseState:e.memoizedState,baseQueue:null,shared:{pending:null},effects:null}}function ci(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,baseQueue:e.baseQueue,shared:e.shared,effects:e.effects})}function si(e,t){return(e={expirationTime:e,suspenseConfig:t,tag:0,payload:null,callback:null,next:null}).next=e}function fi(e,t){if(null!==(e=e.updateQueue)){var n=(e=e.shared).pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}}function di(e,t){var n=e.alternate;null!==n&&ci(n,e),null===(n=(e=e.updateQueue).baseQueue)?(e.baseQueue=t.next=t,t.next=t):(t.next=n.next,n.next=t)}function pi(e,t,n,r){var i=e.updateQueue;ai=!1;var l=i.baseQueue,a=i.shared.pending;if(null!==a){if(null!==l){var u=l.next;l.next=a.next,a.next=u}l=a,i.shared.pending=null,null!==(u=e.alternate)&&null!==(u=u.updateQueue)&&(u.baseQueue=a)}if(null!==l){u=l.next;var c=i.baseState,s=0,f=null,d=null,p=null;if(null!==u)for(var m=u;;){if((a=m.expirationTime)<r){var h={expirationTime:m.expirationTime,suspenseConfig:m.suspenseConfig,tag:m.tag,payload:m.payload,callback:m.callback,next:null};null===p?(d=p=h,f=c):p=p.next=h,a>s&&(s=a)}else{null!==p&&(p=p.next={expirationTime:1073741823,suspenseConfig:m.suspenseConfig,tag:m.tag,payload:m.payload,callback:m.callback,next:null}),cu(a,m.suspenseConfig);e:{var v=e,y=m;switch(a=t,h=n,y.tag){case 1:if("function"==typeof(v=y.payload)){c=v.call(h,c,a);break e}c=v;break e;case 3:v.effectTag=-4097&v.effectTag|64;case 0:if(null==(a="function"==typeof(v=y.payload)?v.call(h,c,a):v))break e;c=o({},c,a);break e;case 2:ai=!0}}null!==m.callback&&(e.effectTag|=32,null===(a=i.effects)?i.effects=[m]:a.push(m))}if(null===(m=m.next)||m===u){if(null===(a=i.shared.pending))break;m=l.next=a.next,a.next=u,i.baseQueue=l=a,i.shared.pending=null}}null===p?f=c:p.next=d,i.baseState=f,i.baseQueue=p,su(s),e.expirationTime=s,e.memoizedState=c}}function mi(e,t,n){if(e=t.effects,t.effects=null,null!==e)for(t=0;t<e.length;t++){var r=e[t],o=r.callback;if(null!==o){if(r.callback=null,r=o,o=n,"function"!=typeof r)throw Error(l(191,r));r.call(o)}}}var hi=X.ReactCurrentBatchConfig,vi=(new r.Component).refs;function yi(e,t,n,r){n=null==(n=n(r,t=e.memoizedState))?t:o({},t,n),e.memoizedState=n,0===e.expirationTime&&(e.updateQueue.baseState=n)}var gi={isMounted:function(e){return!!(e=e._reactInternalFiber)&&Ze(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternalFiber;var r=Xa(),o=hi.suspense;(o=si(r=Ga(r,e,o),o)).payload=t,null!=n&&(o.callback=n),fi(e,o),Za(e,r)},enqueueReplaceState:function(e,t,n){e=e._reactInternalFiber;var r=Xa(),o=hi.suspense;(o=si(r=Ga(r,e,o),o)).tag=1,o.payload=t,null!=n&&(o.callback=n),fi(e,o),Za(e,r)},enqueueForceUpdate:function(e,t){e=e._reactInternalFiber;var n=Xa(),r=hi.suspense;(r=si(n=Ga(n,e,r),r)).tag=2,null!=t&&(r.callback=t),fi(e,r),Za(e,n)}};function bi(e,t,n,r,o,i,l){return"function"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(r,i,l):!(t.prototype&&t.prototype.isPureReactComponent&&$r(n,r)&&$r(o,i))}function wi(e,t,n){var r=!1,o=po,i=t.contextType;return"object"==typeof i&&null!==i?i=li(i):(o=go(t)?vo:mo.current,i=(r=null!=(r=t.contextTypes))?yo(e,o):po),t=new t(n,i),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=gi,e.stateNode=t,t._reactInternalFiber=e,r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=o,e.__reactInternalMemoizedMaskedChildContext=i),t}function xi(e,t,n,r){e=t.state,"function"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,r),"function"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,r),t.state!==e&&gi.enqueueReplaceState(t,t.state,null)}function ki(e,t,n,r){var o=e.stateNode;o.props=n,o.state=e.memoizedState,o.refs=vi,ui(e);var i=t.contextType;"object"==typeof i&&null!==i?o.context=li(i):(i=go(t)?vo:mo.current,o.context=yo(e,i)),pi(e,n,o,r),o.state=e.memoizedState,"function"==typeof(i=t.getDerivedStateFromProps)&&(yi(e,t,i,n),o.state=e.memoizedState),"function"==typeof t.getDerivedStateFromProps||"function"==typeof o.getSnapshotBeforeUpdate||"function"!=typeof o.UNSAFE_componentWillMount&&"function"!=typeof o.componentWillMount||(t=o.state,"function"==typeof o.componentWillMount&&o.componentWillMount(),"function"==typeof o.UNSAFE_componentWillMount&&o.UNSAFE_componentWillMount(),t!==o.state&&gi.enqueueReplaceState(o,o.state,null),pi(e,n,o,r),o.state=e.memoizedState),"function"==typeof o.componentDidMount&&(e.effectTag|=4)}var Ei=Array.isArray;function Ti(e,t,n){if(null!==(e=n.ref)&&"function"!=typeof e&&"object"!=typeof e){if(n._owner){if(n=n._owner){if(1!==n.tag)throw Error(l(309));var r=n.stateNode}if(!r)throw Error(l(147,e));var o=""+e;return null!==t&&null!==t.ref&&"function"==typeof t.ref&&t.ref._stringRef===o?t.ref:(t=function(e){var t=r.refs;t===vi&&(t=r.refs={}),null===e?delete t[o]:t[o]=e},t._stringRef=o,t)}if("string"!=typeof e)throw Error(l(284));if(!n._owner)throw Error(l(290,e))}return e}function Si(e,t){if("textarea"!==e.type)throw Error(l(31,"[object Object]"===Object.prototype.toString.call(t)?"object with keys {"+Object.keys(t).join(", ")+"}":t,""))}function Ci(e){function t(t,n){if(e){var r=t.lastEffect;null!==r?(r.nextEffect=n,t.lastEffect=n):t.firstEffect=t.lastEffect=n,n.nextEffect=null,n.effectTag=8}}function n(n,r){if(!e)return null;for(;null!==r;)t(n,r),r=r.sibling;return null}function r(e,t){for(e=new Map;null!==t;)null!==t.key?e.set(t.key,t):e.set(t.index,t),t=t.sibling;return e}function o(e,t){return(e=Ou(e,t)).index=0,e.sibling=null,e}function i(t,n,r){return t.index=r,e?null!==(r=t.alternate)?(r=r.index)<n?(t.effectTag=2,n):r:(t.effectTag=2,n):n}function a(t){return e&&null===t.alternate&&(t.effectTag=2),t}function u(e,t,n,r){return null===t||6!==t.tag?((t=zu(n,e.mode,r)).return=e,t):((t=o(t,n)).return=e,t)}function c(e,t,n,r){return null!==t&&t.elementType===n.type?((r=o(t,n.props)).ref=Ti(e,t,n),r.return=e,r):((r=Ru(n.type,n.key,n.props,null,e.mode,r)).ref=Ti(e,t,n),r.return=e,r)}function s(e,t,n,r){return null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?((t=Iu(n,e.mode,r)).return=e,t):((t=o(t,n.children||[])).return=e,t)}function f(e,t,n,r,i){return null===t||7!==t.tag?((t=Mu(n,e.mode,r,i)).return=e,t):((t=o(t,n)).return=e,t)}function d(e,t,n){if("string"==typeof t||"number"==typeof t)return(t=zu(""+t,e.mode,n)).return=e,t;if("object"==typeof t&&null!==t){switch(t.$$typeof){case ee:return(n=Ru(t.type,t.key,t.props,null,e.mode,n)).ref=Ti(e,null,t),n.return=e,n;case te:return(t=Iu(t,e.mode,n)).return=e,t}if(Ei(t)||he(t))return(t=Mu(t,e.mode,n,null)).return=e,t;Si(e,t)}return null}function p(e,t,n,r){var o=null!==t?t.key:null;if("string"==typeof n||"number"==typeof n)return null!==o?null:u(e,t,""+n,r);if("object"==typeof n&&null!==n){switch(n.$$typeof){case ee:return n.key===o?n.type===ne?f(e,t,n.props.children,r,o):c(e,t,n,r):null;case te:return n.key===o?s(e,t,n,r):null}if(Ei(n)||he(n))return null!==o?null:f(e,t,n,r,null);Si(e,n)}return null}function m(e,t,n,r,o){if("string"==typeof r||"number"==typeof r)return u(t,e=e.get(n)||null,""+r,o);if("object"==typeof r&&null!==r){switch(r.$$typeof){case ee:return e=e.get(null===r.key?n:r.key)||null,r.type===ne?f(t,e,r.props.children,o,r.key):c(t,e,r,o);case te:return s(t,e=e.get(null===r.key?n:r.key)||null,r,o)}if(Ei(r)||he(r))return f(t,e=e.get(n)||null,r,o,null);Si(t,r)}return null}function h(o,l,a,u){for(var c=null,s=null,f=l,h=l=0,v=null;null!==f&&h<a.length;h++){f.index>h?(v=f,f=null):v=f.sibling;var y=p(o,f,a[h],u);if(null===y){null===f&&(f=v);break}e&&f&&null===y.alternate&&t(o,f),l=i(y,l,h),null===s?c=y:s.sibling=y,s=y,f=v}if(h===a.length)return n(o,f),c;if(null===f){for(;h<a.length;h++)null!==(f=d(o,a[h],u))&&(l=i(f,l,h),null===s?c=f:s.sibling=f,s=f);return c}for(f=r(o,f);h<a.length;h++)null!==(v=m(f,o,h,a[h],u))&&(e&&null!==v.alternate&&f.delete(null===v.key?h:v.key),l=i(v,l,h),null===s?c=v:s.sibling=v,s=v);return e&&f.forEach((function(e){return t(o,e)})),c}function v(o,a,u,c){var s=he(u);if("function"!=typeof s)throw Error(l(150));if(null==(u=s.call(u)))throw Error(l(151));for(var f=s=null,h=a,v=a=0,y=null,g=u.next();null!==h&&!g.done;v++,g=u.next()){h.index>v?(y=h,h=null):y=h.sibling;var b=p(o,h,g.value,c);if(null===b){null===h&&(h=y);break}e&&h&&null===b.alternate&&t(o,h),a=i(b,a,v),null===f?s=b:f.sibling=b,f=b,h=y}if(g.done)return n(o,h),s;if(null===h){for(;!g.done;v++,g=u.next())null!==(g=d(o,g.value,c))&&(a=i(g,a,v),null===f?s=g:f.sibling=g,f=g);return s}for(h=r(o,h);!g.done;v++,g=u.next())null!==(g=m(h,o,v,g.value,c))&&(e&&null!==g.alternate&&h.delete(null===g.key?v:g.key),a=i(g,a,v),null===f?s=g:f.sibling=g,f=g);return e&&h.forEach((function(e){return t(o,e)})),s}return function(e,r,i,u){var c="object"==typeof i&&null!==i&&i.type===ne&&null===i.key;c&&(i=i.props.children);var s="object"==typeof i&&null!==i;if(s)switch(i.$$typeof){case ee:e:{for(s=i.key,c=r;null!==c;){if(c.key===s){if(7===c.tag){if(i.type===ne){n(e,c.sibling),(r=o(c,i.props.children)).return=e,e=r;break e}}else if(c.elementType===i.type){n(e,c.sibling),(r=o(c,i.props)).ref=Ti(e,c,i),r.return=e,e=r;break e}n(e,c);break}t(e,c),c=c.sibling}i.type===ne?((r=Mu(i.props.children,e.mode,u,i.key)).return=e,e=r):((u=Ru(i.type,i.key,i.props,null,e.mode,u)).ref=Ti(e,r,i),u.return=e,e=u)}return a(e);case te:e:{for(c=i.key;null!==r;){if(r.key===c){if(4===r.tag&&r.stateNode.containerInfo===i.containerInfo&&r.stateNode.implementation===i.implementation){n(e,r.sibling),(r=o(r,i.children||[])).return=e,e=r;break e}n(e,r);break}t(e,r),r=r.sibling}(r=Iu(i,e.mode,u)).return=e,e=r}return a(e)}if("string"==typeof i||"number"==typeof i)return i=""+i,null!==r&&6===r.tag?(n(e,r.sibling),(r=o(r,i)).return=e,e=r):(n(e,r),(r=zu(i,e.mode,u)).return=e,e=r),a(e);if(Ei(i))return h(e,r,i,u);if(he(i))return v(e,r,i,u);if(s&&Si(e,i),void 0===i&&!c)switch(e.tag){case 1:case 0:throw e=e.type,Error(l(152,e.displayName||e.name||"Component"))}return n(e,r)}}var _i=Ci(!0),Pi=Ci(!1),Ni={},Oi={current:Ni},Ri={current:Ni},Mi={current:Ni};function zi(e){if(e===Ni)throw Error(l(174));return e}function Ii(e,t){switch(fo(Mi,t),fo(Ri,e),fo(Oi,Ni),e=t.nodeType){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:Fe(null,"");break;default:t=Fe(t=(e=8===e?t.parentNode:t).namespaceURI||null,e=e.tagName)}so(Oi),fo(Oi,t)}function Fi(){so(Oi),so(Ri),so(Mi)}function Ai(e){zi(Mi.current);var t=zi(Oi.current),n=Fe(t,e.type);t!==n&&(fo(Ri,e),fo(Oi,n))}function Li(e){Ri.current===e&&(so(Oi),so(Ri))}var Di={current:0};function ji(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(null===(n=n.dehydrated)||n.data===hn||n.data===vn))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(0!=(64&t.effectTag))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}function Ui(e,t){return{responder:e,props:t}}var $i=X.ReactCurrentDispatcher,Vi=X.ReactCurrentBatchConfig,Wi=0,Bi=null,Qi=null,Hi=null,Ki=!1;function qi(){throw Error(l(321))}function Yi(e,t){if(null===t)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!jr(e[n],t[n]))return!1;return!0}function Xi(e,t,n,r,o,i){if(Wi=i,Bi=t,t.memoizedState=null,t.updateQueue=null,t.expirationTime=0,$i.current=null===e||null===e.memoizedState?bl:wl,e=n(r,o),t.expirationTime===Wi){i=0;do{if(t.expirationTime=0,!(25>i))throw Error(l(301));i+=1,Hi=Qi=null,t.updateQueue=null,$i.current=xl,e=n(r,o)}while(t.expirationTime===Wi)}if($i.current=gl,t=null!==Qi&&null!==Qi.next,Wi=0,Hi=Qi=Bi=null,Ki=!1,t)throw Error(l(300));return e}function Gi(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===Hi?Bi.memoizedState=Hi=e:Hi=Hi.next=e,Hi}function Zi(){if(null===Qi){var e=Bi.alternate;e=null!==e?e.memoizedState:null}else e=Qi.next;var t=null===Hi?Bi.memoizedState:Hi.next;if(null!==t)Hi=t,Qi=e;else{if(null===e)throw Error(l(310));e={memoizedState:(Qi=e).memoizedState,baseState:Qi.baseState,baseQueue:Qi.baseQueue,queue:Qi.queue,next:null},null===Hi?Bi.memoizedState=Hi=e:Hi=Hi.next=e}return Hi}function Ji(e,t){return"function"==typeof t?t(e):t}function el(e){var t=Zi(),n=t.queue;if(null===n)throw Error(l(311));n.lastRenderedReducer=e;var r=Qi,o=r.baseQueue,i=n.pending;if(null!==i){if(null!==o){var a=o.next;o.next=i.next,i.next=a}r.baseQueue=o=i,n.pending=null}if(null!==o){o=o.next,r=r.baseState;var u=a=i=null,c=o;do{var s=c.expirationTime;if(s<Wi){var f={expirationTime:c.expirationTime,suspenseConfig:c.suspenseConfig,action:c.action,eagerReducer:c.eagerReducer,eagerState:c.eagerState,next:null};null===u?(a=u=f,i=r):u=u.next=f,s>Bi.expirationTime&&(Bi.expirationTime=s,su(s))}else null!==u&&(u=u.next={expirationTime:1073741823,suspenseConfig:c.suspenseConfig,action:c.action,eagerReducer:c.eagerReducer,eagerState:c.eagerState,next:null}),cu(s,c.suspenseConfig),r=c.eagerReducer===e?c.eagerState:e(r,c.action);c=c.next}while(null!==c&&c!==o);null===u?i=r:u.next=a,jr(r,t.memoizedState)||(Ml=!0),t.memoizedState=r,t.baseState=i,t.baseQueue=u,n.lastRenderedState=r}return[t.memoizedState,n.dispatch]}function tl(e){var t=Zi(),n=t.queue;if(null===n)throw Error(l(311));n.lastRenderedReducer=e;var r=n.dispatch,o=n.pending,i=t.memoizedState;if(null!==o){n.pending=null;var a=o=o.next;do{i=e(i,a.action),a=a.next}while(a!==o);jr(i,t.memoizedState)||(Ml=!0),t.memoizedState=i,null===t.baseQueue&&(t.baseState=i),n.lastRenderedState=i}return[i,r]}function nl(e){var t=Gi();return"function"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e=(e=t.queue={pending:null,dispatch:null,lastRenderedReducer:Ji,lastRenderedState:e}).dispatch=yl.bind(null,Bi,e),[t.memoizedState,e]}function rl(e,t,n,r){return e={tag:e,create:t,destroy:n,deps:r,next:null},null===(t=Bi.updateQueue)?(t={lastEffect:null},Bi.updateQueue=t,t.lastEffect=e.next=e):null===(n=t.lastEffect)?t.lastEffect=e.next=e:(r=n.next,n.next=e,e.next=r,t.lastEffect=e),e}function ol(){return Zi().memoizedState}function il(e,t,n,r){var o=Gi();Bi.effectTag|=e,o.memoizedState=rl(1|t,n,void 0,void 0===r?null:r)}function ll(e,t,n,r){var o=Zi();r=void 0===r?null:r;var i=void 0;if(null!==Qi){var l=Qi.memoizedState;if(i=l.destroy,null!==r&&Yi(r,l.deps))return void rl(t,n,i,r)}Bi.effectTag|=e,o.memoizedState=rl(1|t,n,i,r)}function al(e,t){return il(516,4,e,t)}function ul(e,t){return ll(516,4,e,t)}function cl(e,t){return ll(4,2,e,t)}function sl(e,t){return"function"==typeof t?(e=e(),t(e),function(){t(null)}):null!=t?(e=e(),t.current=e,function(){t.current=null}):void 0}function fl(e,t,n){return n=null!=n?n.concat([e]):null,ll(4,2,sl.bind(null,t,e),n)}function dl(){}function pl(e,t){return Gi().memoizedState=[e,void 0===t?null:t],e}function ml(e,t){var n=Zi();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&Yi(t,r[1])?r[0]:(n.memoizedState=[e,t],e)}function hl(e,t){var n=Zi();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&Yi(t,r[1])?r[0]:(e=e(),n.memoizedState=[e,t],e)}function vl(e,t,n){var r=Wo();Qo(98>r?98:r,(function(){e(!0)})),Qo(97<r?97:r,(function(){var r=Vi.suspense;Vi.suspense=void 0===t?null:t;try{e(!1),n()}finally{Vi.suspense=r}}))}function yl(e,t,n){var r=Xa(),o=hi.suspense;o={expirationTime:r=Ga(r,e,o),suspenseConfig:o,action:n,eagerReducer:null,eagerState:null,next:null};var i=t.pending;if(null===i?o.next=o:(o.next=i.next,i.next=o),t.pending=o,i=e.alternate,e===Bi||null!==i&&i===Bi)Ki=!0,o.expirationTime=Wi,Bi.expirationTime=Wi;else{if(0===e.expirationTime&&(null===i||0===i.expirationTime)&&null!==(i=t.lastRenderedReducer))try{var l=t.lastRenderedState,a=i(l,n);if(o.eagerReducer=i,o.eagerState=a,jr(a,l))return}catch(e){}Za(e,r)}}var gl={readContext:li,useCallback:qi,useContext:qi,useEffect:qi,useImperativeHandle:qi,useLayoutEffect:qi,useMemo:qi,useReducer:qi,useRef:qi,useState:qi,useDebugValue:qi,useResponder:qi,useDeferredValue:qi,useTransition:qi},bl={readContext:li,useCallback:pl,useContext:li,useEffect:al,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,il(4,2,sl.bind(null,t,e),n)},useLayoutEffect:function(e,t){return il(4,2,e,t)},useMemo:function(e,t){var n=Gi();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=Gi();return t=void 0!==n?n(t):t,r.memoizedState=r.baseState=t,e=(e=r.queue={pending:null,dispatch:null,lastRenderedReducer:e,lastRenderedState:t}).dispatch=yl.bind(null,Bi,e),[r.memoizedState,e]},useRef:function(e){return e={current:e},Gi().memoizedState=e},useState:nl,useDebugValue:dl,useResponder:Ui,useDeferredValue:function(e,t){var n=nl(e),r=n[0],o=n[1];return al((function(){var n=Vi.suspense;Vi.suspense=void 0===t?null:t;try{o(e)}finally{Vi.suspense=n}}),[e,t]),r},useTransition:function(e){var t=nl(!1),n=t[0];return t=t[1],[pl(vl.bind(null,t,e),[t,e]),n]}},wl={readContext:li,useCallback:ml,useContext:li,useEffect:ul,useImperativeHandle:fl,useLayoutEffect:cl,useMemo:hl,useReducer:el,useRef:ol,useState:function(){return el(Ji)},useDebugValue:dl,useResponder:Ui,useDeferredValue:function(e,t){var n=el(Ji),r=n[0],o=n[1];return ul((function(){var n=Vi.suspense;Vi.suspense=void 0===t?null:t;try{o(e)}finally{Vi.suspense=n}}),[e,t]),r},useTransition:function(e){var t=el(Ji),n=t[0];return t=t[1],[ml(vl.bind(null,t,e),[t,e]),n]}},xl={readContext:li,useCallback:ml,useContext:li,useEffect:ul,useImperativeHandle:fl,useLayoutEffect:cl,useMemo:hl,useReducer:tl,useRef:ol,useState:function(){return tl(Ji)},useDebugValue:dl,useResponder:Ui,useDeferredValue:function(e,t){var n=tl(Ji),r=n[0],o=n[1];return ul((function(){var n=Vi.suspense;Vi.suspense=void 0===t?null:t;try{o(e)}finally{Vi.suspense=n}}),[e,t]),r},useTransition:function(e){var t=tl(Ji),n=t[0];return t=t[1],[ml(vl.bind(null,t,e),[t,e]),n]}},kl=null,El=null,Tl=!1;function Sl(e,t){var n=Pu(5,null,null,0);n.elementType="DELETED",n.type="DELETED",n.stateNode=t,n.return=e,n.effectTag=8,null!==e.lastEffect?(e.lastEffect.nextEffect=n,e.lastEffect=n):e.firstEffect=e.lastEffect=n}function Cl(e,t){switch(e.tag){case 5:var n=e.type;return null!==(t=1!==t.nodeType||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t)&&(e.stateNode=t,!0);case 6:return null!==(t=""===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,!0);default:return!1}}function _l(e){if(Tl){var t=El;if(t){var n=t;if(!Cl(e,t)){if(!(t=En(n.nextSibling))||!Cl(e,t))return e.effectTag=-1025&e.effectTag|2,Tl=!1,void(kl=e);Sl(kl,n)}kl=e,El=En(t.firstChild)}else e.effectTag=-1025&e.effectTag|2,Tl=!1,kl=e}}function Pl(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;kl=e}function Nl(e){if(e!==kl)return!1;if(!Tl)return Pl(e),Tl=!0,!1;var t=e.type;if(5!==e.tag||"head"!==t&&"body"!==t&&!wn(t,e.memoizedProps))for(t=El;t;)Sl(e,t),t=En(t.nextSibling);if(Pl(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(l(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var n=e.data;if("/$"===n){if(0===t){El=En(e.nextSibling);break e}t--}else"$"!==n&&n!==vn&&n!==hn||t++}e=e.nextSibling}El=null}}else El=kl?En(e.stateNode.nextSibling):null;return!0}function Ol(){El=kl=null,Tl=!1}var Rl=X.ReactCurrentOwner,Ml=!1;function zl(e,t,n,r){t.child=null===e?Pi(t,null,n,r):_i(t,e.child,n,r)}function Il(e,t,n,r,o){n=n.render;var i=t.ref;return ii(t,o),r=Xi(e,t,n,r,i,o),null===e||Ml?(t.effectTag|=1,zl(e,t,r,o),t.child):(t.updateQueue=e.updateQueue,t.effectTag&=-517,e.expirationTime<=o&&(e.expirationTime=0),Xl(e,t,o))}function Fl(e,t,n,r,o,i){if(null===e){var l=n.type;return"function"!=typeof l||Nu(l)||void 0!==l.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=Ru(n.type,null,r,null,t.mode,i)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=l,Al(e,t,l,r,o,i))}return l=e.child,o<i&&(o=l.memoizedProps,(n=null!==(n=n.compare)?n:$r)(o,r)&&e.ref===t.ref)?Xl(e,t,i):(t.effectTag|=1,(e=Ou(l,r)).ref=t.ref,e.return=t,t.child=e)}function Al(e,t,n,r,o,i){return null!==e&&$r(e.memoizedProps,r)&&e.ref===t.ref&&(Ml=!1,o<i)?(t.expirationTime=e.expirationTime,Xl(e,t,i)):Dl(e,t,n,r,i)}function Ll(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.effectTag|=128)}function Dl(e,t,n,r,o){var i=go(n)?vo:mo.current;return i=yo(t,i),ii(t,o),n=Xi(e,t,n,r,i,o),null===e||Ml?(t.effectTag|=1,zl(e,t,n,o),t.child):(t.updateQueue=e.updateQueue,t.effectTag&=-517,e.expirationTime<=o&&(e.expirationTime=0),Xl(e,t,o))}function jl(e,t,n,r,o){if(go(n)){var i=!0;ko(t)}else i=!1;if(ii(t,o),null===t.stateNode)null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),wi(t,n,r),ki(t,n,r,o),r=!0;else if(null===e){var l=t.stateNode,a=t.memoizedProps;l.props=a;var u=l.context,c=n.contextType;c="object"==typeof c&&null!==c?li(c):yo(t,c=go(n)?vo:mo.current);var s=n.getDerivedStateFromProps,f="function"==typeof s||"function"==typeof l.getSnapshotBeforeUpdate;f||"function"!=typeof l.UNSAFE_componentWillReceiveProps&&"function"!=typeof l.componentWillReceiveProps||(a!==r||u!==c)&&xi(t,l,r,c),ai=!1;var d=t.memoizedState;l.state=d,pi(t,r,l,o),u=t.memoizedState,a!==r||d!==u||ho.current||ai?("function"==typeof s&&(yi(t,n,s,r),u=t.memoizedState),(a=ai||bi(t,n,a,r,d,u,c))?(f||"function"!=typeof l.UNSAFE_componentWillMount&&"function"!=typeof l.componentWillMount||("function"==typeof l.componentWillMount&&l.componentWillMount(),"function"==typeof l.UNSAFE_componentWillMount&&l.UNSAFE_componentWillMount()),"function"==typeof l.componentDidMount&&(t.effectTag|=4)):("function"==typeof l.componentDidMount&&(t.effectTag|=4),t.memoizedProps=r,t.memoizedState=u),l.props=r,l.state=u,l.context=c,r=a):("function"==typeof l.componentDidMount&&(t.effectTag|=4),r=!1)}else l=t.stateNode,ci(e,t),a=t.memoizedProps,l.props=t.type===t.elementType?a:Go(t.type,a),u=l.context,c="object"==typeof(c=n.contextType)&&null!==c?li(c):yo(t,c=go(n)?vo:mo.current),(f="function"==typeof(s=n.getDerivedStateFromProps)||"function"==typeof l.getSnapshotBeforeUpdate)||"function"!=typeof l.UNSAFE_componentWillReceiveProps&&"function"!=typeof l.componentWillReceiveProps||(a!==r||u!==c)&&xi(t,l,r,c),ai=!1,u=t.memoizedState,l.state=u,pi(t,r,l,o),d=t.memoizedState,a!==r||u!==d||ho.current||ai?("function"==typeof s&&(yi(t,n,s,r),d=t.memoizedState),(s=ai||bi(t,n,a,r,u,d,c))?(f||"function"!=typeof l.UNSAFE_componentWillUpdate&&"function"!=typeof l.componentWillUpdate||("function"==typeof l.componentWillUpdate&&l.componentWillUpdate(r,d,c),"function"==typeof l.UNSAFE_componentWillUpdate&&l.UNSAFE_componentWillUpdate(r,d,c)),"function"==typeof l.componentDidUpdate&&(t.effectTag|=4),"function"==typeof l.getSnapshotBeforeUpdate&&(t.effectTag|=256)):("function"!=typeof l.componentDidUpdate||a===e.memoizedProps&&u===e.memoizedState||(t.effectTag|=4),"function"!=typeof l.getSnapshotBeforeUpdate||a===e.memoizedProps&&u===e.memoizedState||(t.effectTag|=256),t.memoizedProps=r,t.memoizedState=d),l.props=r,l.state=d,l.context=c,r=s):("function"!=typeof l.componentDidUpdate||a===e.memoizedProps&&u===e.memoizedState||(t.effectTag|=4),"function"!=typeof l.getSnapshotBeforeUpdate||a===e.memoizedProps&&u===e.memoizedState||(t.effectTag|=256),r=!1);return Ul(e,t,n,r,i,o)}function Ul(e,t,n,r,o,i){Ll(e,t);var l=0!=(64&t.effectTag);if(!r&&!l)return o&&Eo(t,n,!1),Xl(e,t,i);r=t.stateNode,Rl.current=t;var a=l&&"function"!=typeof n.getDerivedStateFromError?null:r.render();return t.effectTag|=1,null!==e&&l?(t.child=_i(t,e.child,null,i),t.child=_i(t,null,a,i)):zl(e,t,a,i),t.memoizedState=r.state,o&&Eo(t,n,!0),t.child}function $l(e){var t=e.stateNode;t.pendingContext?wo(0,t.pendingContext,t.pendingContext!==t.context):t.context&&wo(0,t.context,!1),Ii(e,t.containerInfo)}var Vl,Wl,Bl,Ql={dehydrated:null,retryTime:0};function Hl(e,t,n){var r,o=t.mode,i=t.pendingProps,l=Di.current,a=!1;if((r=0!=(64&t.effectTag))||(r=0!=(2&l)&&(null===e||null!==e.memoizedState)),r?(a=!0,t.effectTag&=-65):null!==e&&null===e.memoizedState||void 0===i.fallback||!0===i.unstable_avoidThisFallback||(l|=1),fo(Di,1&l),null===e){if(void 0!==i.fallback&&_l(t),a){if(a=i.fallback,(i=Mu(null,o,0,null)).return=t,0==(2&t.mode))for(e=null!==t.memoizedState?t.child.child:t.child,i.child=e;null!==e;)e.return=i,e=e.sibling;return(n=Mu(a,o,n,null)).return=t,i.sibling=n,t.memoizedState=Ql,t.child=i,n}return o=i.children,t.memoizedState=null,t.child=Pi(t,null,o,n)}if(null!==e.memoizedState){if(o=(e=e.child).sibling,a){if(i=i.fallback,(n=Ou(e,e.pendingProps)).return=t,0==(2&t.mode)&&(a=null!==t.memoizedState?t.child.child:t.child)!==e.child)for(n.child=a;null!==a;)a.return=n,a=a.sibling;return(o=Ou(o,i)).return=t,n.sibling=o,n.childExpirationTime=0,t.memoizedState=Ql,t.child=n,o}return n=_i(t,e.child,i.children,n),t.memoizedState=null,t.child=n}if(e=e.child,a){if(a=i.fallback,(i=Mu(null,o,0,null)).return=t,i.child=e,null!==e&&(e.return=i),0==(2&t.mode))for(e=null!==t.memoizedState?t.child.child:t.child,i.child=e;null!==e;)e.return=i,e=e.sibling;return(n=Mu(a,o,n,null)).return=t,i.sibling=n,n.effectTag|=2,i.childExpirationTime=0,t.memoizedState=Ql,t.child=i,n}return t.memoizedState=null,t.child=_i(t,e,i.children,n)}function Kl(e,t){e.expirationTime<t&&(e.expirationTime=t);var n=e.alternate;null!==n&&n.expirationTime<t&&(n.expirationTime=t),oi(e.return,t)}function ql(e,t,n,r,o,i){var l=e.memoizedState;null===l?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailExpiration:0,tailMode:o,lastEffect:i}:(l.isBackwards=t,l.rendering=null,l.renderingStartTime=0,l.last=r,l.tail=n,l.tailExpiration=0,l.tailMode=o,l.lastEffect=i)}function Yl(e,t,n){var r=t.pendingProps,o=r.revealOrder,i=r.tail;if(zl(e,t,r.children,n),0!=(2&(r=Di.current)))r=1&r|2,t.effectTag|=64;else{if(null!==e&&0!=(64&e.effectTag))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&Kl(e,n);else if(19===e.tag)Kl(e,n);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}r&=1}if(fo(Di,r),0==(2&t.mode))t.memoizedState=null;else switch(o){case"forwards":for(n=t.child,o=null;null!==n;)null!==(e=n.alternate)&&null===ji(e)&&(o=n),n=n.sibling;null===(n=o)?(o=t.child,t.child=null):(o=n.sibling,n.sibling=null),ql(t,!1,o,n,i,t.lastEffect);break;case"backwards":for(n=null,o=t.child,t.child=null;null!==o;){if(null!==(e=o.alternate)&&null===ji(e)){t.child=o;break}e=o.sibling,o.sibling=n,n=o,o=e}ql(t,!0,n,null,i,t.lastEffect);break;case"together":ql(t,!1,null,null,void 0,t.lastEffect);break;default:t.memoizedState=null}return t.child}function Xl(e,t,n){null!==e&&(t.dependencies=e.dependencies);var r=t.expirationTime;if(0!==r&&su(r),t.childExpirationTime<n)return null;if(null!==e&&t.child!==e.child)throw Error(l(153));if(null!==t.child){for(n=Ou(e=t.child,e.pendingProps),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=Ou(e,e.pendingProps)).return=t;n.sibling=null}return t.child}function Gl(e,t){switch(e.tailMode){case"hidden":t=e.tail;for(var n=null;null!==t;)null!==t.alternate&&(n=t),t=t.sibling;null===n?e.tail=null:n.sibling=null;break;case"collapsed":n=e.tail;for(var r=null;null!==n;)null!==n.alternate&&(r=n),n=n.sibling;null===r?t||null===e.tail?e.tail=null:e.tail.sibling=null:r.sibling=null}}function Zl(e,t,n){var r=t.pendingProps;switch(t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return null;case 1:case 17:return go(t.type)&&bo(),null;case 3:return Fi(),so(ho),so(mo),(n=t.stateNode).pendingContext&&(n.context=n.pendingContext,n.pendingContext=null),null!==e&&null!==e.child||!Nl(t)||(t.effectTag|=4),null;case 5:Li(t),n=zi(Mi.current);var i=t.type;if(null!==e&&null!=t.stateNode)Wl(e,t,i,r,n),e.ref!==t.ref&&(t.effectTag|=128);else{if(!r){if(null===t.stateNode)throw Error(l(166));return null}if(e=zi(Oi.current),Nl(t)){r=t.stateNode,i=t.type;var a=t.memoizedProps;switch(r[Cn]=t,r[_n]=a,i){case"iframe":case"object":case"embed":Ht("load",r);break;case"video":case"audio":for(e=0;e<Ye.length;e++)Ht(Ye[e],r);break;case"source":Ht("error",r);break;case"img":case"image":case"link":Ht("error",r),Ht("load",r);break;case"form":Ht("reset",r),Ht("submit",r);break;case"details":Ht("toggle",r);break;case"input":Ee(r,a),Ht("invalid",r),an(n,"onChange");break;case"select":r._wrapperState={wasMultiple:!!a.multiple},Ht("invalid",r),an(n,"onChange");break;case"textarea":Re(r,a),Ht("invalid",r),an(n,"onChange")}for(var u in rn(i,a),e=null,a)if(a.hasOwnProperty(u)){var c=a[u];"children"===u?"string"==typeof c?r.textContent!==c&&(e=["children",c]):"number"==typeof c&&r.textContent!==""+c&&(e=["children",""+c]):T.hasOwnProperty(u)&&null!=c&&an(n,u)}switch(i){case"input":we(r),Ce(r,a,!0);break;case"textarea":we(r),ze(r);break;case"select":case"option":break;default:"function"==typeof a.onClick&&(r.onclick=un)}n=e,t.updateQueue=n,null!==n&&(t.effectTag|=4)}else{switch(u=9===n.nodeType?n:n.ownerDocument,e===ln&&(e=Ie(i)),e===ln?"script"===i?((e=u.createElement("div")).innerHTML="<script><\/script>",e=e.removeChild(e.firstChild)):"string"==typeof r.is?e=u.createElement(i,{is:r.is}):(e=u.createElement(i),"select"===i&&(u=e,r.multiple?u.multiple=!0:r.size&&(u.size=r.size))):e=u.createElementNS(e,i),e[Cn]=t,e[_n]=r,Vl(e,t),t.stateNode=e,u=on(i,r),i){case"iframe":case"object":case"embed":Ht("load",e),c=r;break;case"video":case"audio":for(c=0;c<Ye.length;c++)Ht(Ye[c],e);c=r;break;case"source":Ht("error",e),c=r;break;case"img":case"image":case"link":Ht("error",e),Ht("load",e),c=r;break;case"form":Ht("reset",e),Ht("submit",e),c=r;break;case"details":Ht("toggle",e),c=r;break;case"input":Ee(e,r),c=ke(e,r),Ht("invalid",e),an(n,"onChange");break;case"option":c=Pe(e,r);break;case"select":e._wrapperState={wasMultiple:!!r.multiple},c=o({},r,{value:void 0}),Ht("invalid",e),an(n,"onChange");break;case"textarea":Re(e,r),c=Oe(e,r),Ht("invalid",e),an(n,"onChange");break;default:c=r}rn(i,c);var s=c;for(a in s)if(s.hasOwnProperty(a)){var f=s[a];"style"===a?tn(e,f):"dangerouslySetInnerHTML"===a?null!=(f=f?f.__html:void 0)&&De(e,f):"children"===a?"string"==typeof f?("textarea"!==i||""!==f)&&je(e,f):"number"==typeof f&&je(e,""+f):"suppressContentEditableWarning"!==a&&"suppressHydrationWarning"!==a&&"autoFocus"!==a&&(T.hasOwnProperty(a)?null!=f&&an(n,a):null!=f&&G(e,a,f,u))}switch(i){case"input":we(e),Ce(e,r,!1);break;case"textarea":we(e),ze(e);break;case"option":null!=r.value&&e.setAttribute("value",""+ge(r.value));break;case"select":e.multiple=!!r.multiple,null!=(n=r.value)?Ne(e,!!r.multiple,n,!1):null!=r.defaultValue&&Ne(e,!!r.multiple,r.defaultValue,!0);break;default:"function"==typeof c.onClick&&(e.onclick=un)}bn(i,r)&&(t.effectTag|=4)}null!==t.ref&&(t.effectTag|=128)}return null;case 6:if(e&&null!=t.stateNode)Bl(0,t,e.memoizedProps,r);else{if("string"!=typeof r&&null===t.stateNode)throw Error(l(166));n=zi(Mi.current),zi(Oi.current),Nl(t)?(n=t.stateNode,r=t.memoizedProps,n[Cn]=t,n.nodeValue!==r&&(t.effectTag|=4)):((n=(9===n.nodeType?n:n.ownerDocument).createTextNode(r))[Cn]=t,t.stateNode=n)}return null;case 13:return so(Di),r=t.memoizedState,0!=(64&t.effectTag)?(t.expirationTime=n,t):(n=null!==r,r=!1,null===e?void 0!==t.memoizedProps.fallback&&Nl(t):(r=null!==(i=e.memoizedState),n||null===i||null!==(i=e.child.sibling)&&(null!==(a=t.firstEffect)?(t.firstEffect=i,i.nextEffect=a):(t.firstEffect=t.lastEffect=i,i.nextEffect=null),i.effectTag=8)),n&&!r&&0!=(2&t.mode)&&(null===e&&!0!==t.memoizedProps.unstable_avoidThisFallback||0!=(1&Di.current)?Ra===Ta&&(Ra=Sa):(Ra!==Ta&&Ra!==Sa||(Ra=Ca),0!==Aa&&null!==Pa&&(Lu(Pa,Oa),Du(Pa,Aa)))),(n||r)&&(t.effectTag|=4),null);case 4:return Fi(),null;case 10:return ri(t),null;case 19:if(so(Di),null===(r=t.memoizedState))return null;if(i=0!=(64&t.effectTag),null===(a=r.rendering)){if(i)Gl(r,!1);else if(Ra!==Ta||null!==e&&0!=(64&e.effectTag))for(a=t.child;null!==a;){if(null!==(e=ji(a))){for(t.effectTag|=64,Gl(r,!1),null!==(i=e.updateQueue)&&(t.updateQueue=i,t.effectTag|=4),null===r.lastEffect&&(t.firstEffect=null),t.lastEffect=r.lastEffect,r=t.child;null!==r;)a=n,(i=r).effectTag&=2,i.nextEffect=null,i.firstEffect=null,i.lastEffect=null,null===(e=i.alternate)?(i.childExpirationTime=0,i.expirationTime=a,i.child=null,i.memoizedProps=null,i.memoizedState=null,i.updateQueue=null,i.dependencies=null):(i.childExpirationTime=e.childExpirationTime,i.expirationTime=e.expirationTime,i.child=e.child,i.memoizedProps=e.memoizedProps,i.memoizedState=e.memoizedState,i.updateQueue=e.updateQueue,a=e.dependencies,i.dependencies=null===a?null:{expirationTime:a.expirationTime,firstContext:a.firstContext,responders:a.responders}),r=r.sibling;return fo(Di,1&Di.current|2),t.child}a=a.sibling}}else{if(!i)if(null!==(e=ji(a))){if(t.effectTag|=64,i=!0,null!==(n=e.updateQueue)&&(t.updateQueue=n,t.effectTag|=4),Gl(r,!0),null===r.tail&&"hidden"===r.tailMode&&!a.alternate)return null!==(t=t.lastEffect=r.lastEffect)&&(t.nextEffect=null),null}else 2*Vo()-r.renderingStartTime>r.tailExpiration&&1<n&&(t.effectTag|=64,i=!0,Gl(r,!1),t.expirationTime=t.childExpirationTime=n-1);r.isBackwards?(a.sibling=t.child,t.child=a):(null!==(n=r.last)?n.sibling=a:t.child=a,r.last=a)}return null!==r.tail?(0===r.tailExpiration&&(r.tailExpiration=Vo()+500),n=r.tail,r.rendering=n,r.tail=n.sibling,r.lastEffect=t.lastEffect,r.renderingStartTime=Vo(),n.sibling=null,t=Di.current,fo(Di,i?1&t|2:1&t),n):null}throw Error(l(156,t.tag))}function Jl(e){switch(e.tag){case 1:go(e.type)&&bo();var t=e.effectTag;return 4096&t?(e.effectTag=-4097&t|64,e):null;case 3:if(Fi(),so(ho),so(mo),0!=(64&(t=e.effectTag)))throw Error(l(285));return e.effectTag=-4097&t|64,e;case 5:return Li(e),null;case 13:return so(Di),4096&(t=e.effectTag)?(e.effectTag=-4097&t|64,e):null;case 19:return so(Di),null;case 4:return Fi(),null;case 10:return ri(e),null;default:return null}}function ea(e,t){return{value:e,source:t,stack:ye(t)}}Vl=function(e,t){for(var n=t.child;null!==n;){if(5===n.tag||6===n.tag)e.appendChild(n.stateNode);else if(4!==n.tag&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===t)break;for(;null===n.sibling;){if(null===n.return||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},Wl=function(e,t,n,r,i){var l=e.memoizedProps;if(l!==r){var a,u,c=t.stateNode;switch(zi(Oi.current),e=null,n){case"input":l=ke(c,l),r=ke(c,r),e=[];break;case"option":l=Pe(c,l),r=Pe(c,r),e=[];break;case"select":l=o({},l,{value:void 0}),r=o({},r,{value:void 0}),e=[];break;case"textarea":l=Oe(c,l),r=Oe(c,r),e=[];break;default:"function"!=typeof l.onClick&&"function"==typeof r.onClick&&(c.onclick=un)}for(a in rn(n,r),n=null,l)if(!r.hasOwnProperty(a)&&l.hasOwnProperty(a)&&null!=l[a])if("style"===a)for(u in c=l[a])c.hasOwnProperty(u)&&(n||(n={}),n[u]="");else"dangerouslySetInnerHTML"!==a&&"children"!==a&&"suppressContentEditableWarning"!==a&&"suppressHydrationWarning"!==a&&"autoFocus"!==a&&(T.hasOwnProperty(a)?e||(e=[]):(e=e||[]).push(a,null));for(a in r){var s=r[a];if(c=null!=l?l[a]:void 0,r.hasOwnProperty(a)&&s!==c&&(null!=s||null!=c))if("style"===a)if(c){for(u in c)!c.hasOwnProperty(u)||s&&s.hasOwnProperty(u)||(n||(n={}),n[u]="");for(u in s)s.hasOwnProperty(u)&&c[u]!==s[u]&&(n||(n={}),n[u]=s[u])}else n||(e||(e=[]),e.push(a,n)),n=s;else"dangerouslySetInnerHTML"===a?(s=s?s.__html:void 0,c=c?c.__html:void 0,null!=s&&c!==s&&(e=e||[]).push(a,s)):"children"===a?c===s||"string"!=typeof s&&"number"!=typeof s||(e=e||[]).push(a,""+s):"suppressContentEditableWarning"!==a&&"suppressHydrationWarning"!==a&&(T.hasOwnProperty(a)?(null!=s&&an(i,a),e||c===s||(e=[])):(e=e||[]).push(a,s))}n&&(e=e||[]).push("style",n),i=e,(t.updateQueue=i)&&(t.effectTag|=4)}},Bl=function(e,t,n,r){n!==r&&(t.effectTag|=4)};var ta="function"==typeof WeakSet?WeakSet:Set;function na(e,t){var n=t.source,r=t.stack;null===r&&null!==n&&(r=ye(n)),null!==n&&ve(n.type),t=t.value,null!==e&&1===e.tag&&ve(e.type);try{console.error(t)}catch(e){setTimeout((function(){throw e}))}}function ra(e){var t=e.ref;if(null!==t)if("function"==typeof t)try{t(null)}catch(t){ku(e,t)}else t.current=null}function oa(e,t){switch(t.tag){case 0:case 11:case 15:case 22:case 3:case 5:case 6:case 4:case 17:return;case 1:if(256&t.effectTag&&null!==e){var n=e.memoizedProps,r=e.memoizedState;t=(e=t.stateNode).getSnapshotBeforeUpdate(t.elementType===t.type?n:Go(t.type,n),r),e.__reactInternalSnapshotBeforeUpdate=t}return}throw Error(l(163))}function ia(e,t){if(null!==(t=null!==(t=t.updateQueue)?t.lastEffect:null)){var n=t=t.next;do{if((n.tag&e)===e){var r=n.destroy;n.destroy=void 0,void 0!==r&&r()}n=n.next}while(n!==t)}}function la(e,t){if(null!==(t=null!==(t=t.updateQueue)?t.lastEffect:null)){var n=t=t.next;do{if((n.tag&e)===e){var r=n.create;n.destroy=r()}n=n.next}while(n!==t)}}function aa(e,t,n){switch(n.tag){case 0:case 11:case 15:case 22:return void la(3,n);case 1:if(e=n.stateNode,4&n.effectTag)if(null===t)e.componentDidMount();else{var r=n.elementType===n.type?t.memoizedProps:Go(n.type,t.memoizedProps);e.componentDidUpdate(r,t.memoizedState,e.__reactInternalSnapshotBeforeUpdate)}return void(null!==(t=n.updateQueue)&&mi(n,t,e));case 3:if(null!==(t=n.updateQueue)){if(e=null,null!==n.child)switch(n.child.tag){case 5:case 1:e=n.child.stateNode}mi(n,t,e)}return;case 5:return e=n.stateNode,void(null===t&&4&n.effectTag&&bn(n.type,n.memoizedProps)&&e.focus());case 6:case 4:case 12:case 19:case 17:case 20:case 21:return;case 13:return void(null===n.memoizedState&&(n=n.alternate,null!==n&&(n=n.memoizedState,null!==n&&(n=n.dehydrated,null!==n&&Ft(n)))))}throw Error(l(163))}function ua(e,t,n){switch("function"==typeof Cu&&Cu(t),t.tag){case 0:case 11:case 14:case 15:case 22:if(null!==(e=t.updateQueue)&&null!==(e=e.lastEffect)){var r=e.next;Qo(97<n?97:n,(function(){var e=r;do{var n=e.destroy;if(void 0!==n){var o=t;try{n()}catch(e){ku(o,e)}}e=e.next}while(e!==r)}))}break;case 1:ra(t),"function"==typeof(n=t.stateNode).componentWillUnmount&&function(e,t){try{t.props=e.memoizedProps,t.state=e.memoizedState,t.componentWillUnmount()}catch(t){ku(e,t)}}(t,n);break;case 5:ra(t);break;case 4:ma(e,t,n)}}function ca(e){var t=e.alternate;e.return=null,e.child=null,e.memoizedState=null,e.updateQueue=null,e.dependencies=null,e.alternate=null,e.firstEffect=null,e.lastEffect=null,e.pendingProps=null,e.memoizedProps=null,e.stateNode=null,null!==t&&ca(t)}function sa(e){return 5===e.tag||3===e.tag||4===e.tag}function fa(e){e:{for(var t=e.return;null!==t;){if(sa(t)){var n=t;break e}t=t.return}throw Error(l(160))}switch(t=n.stateNode,n.tag){case 5:var r=!1;break;case 3:case 4:t=t.containerInfo,r=!0;break;default:throw Error(l(161))}16&n.effectTag&&(je(t,""),n.effectTag&=-17);e:t:for(n=e;;){for(;null===n.sibling;){if(null===n.return||sa(n.return)){n=null;break e}n=n.return}for(n.sibling.return=n.return,n=n.sibling;5!==n.tag&&6!==n.tag&&18!==n.tag;){if(2&n.effectTag)continue t;if(null===n.child||4===n.tag)continue t;n.child.return=n,n=n.child}if(!(2&n.effectTag)){n=n.stateNode;break e}}r?da(e,n,t):pa(e,n,t)}function da(e,t,n){var r=e.tag,o=5===r||6===r;if(o)e=o?e.stateNode:e.stateNode.instance,t?8===n.nodeType?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(8===n.nodeType?(t=n.parentNode).insertBefore(e,n):(t=n).appendChild(e),null!=(n=n._reactRootContainer)||null!==t.onclick||(t.onclick=un));else if(4!==r&&null!==(e=e.child))for(da(e,t,n),e=e.sibling;null!==e;)da(e,t,n),e=e.sibling}function pa(e,t,n){var r=e.tag,o=5===r||6===r;if(o)e=o?e.stateNode:e.stateNode.instance,t?n.insertBefore(e,t):n.appendChild(e);else if(4!==r&&null!==(e=e.child))for(pa(e,t,n),e=e.sibling;null!==e;)pa(e,t,n),e=e.sibling}function ma(e,t,n){for(var r,o,i=t,a=!1;;){if(!a){a=i.return;e:for(;;){if(null===a)throw Error(l(160));switch(r=a.stateNode,a.tag){case 5:o=!1;break e;case 3:case 4:r=r.containerInfo,o=!0;break e}a=a.return}a=!0}if(5===i.tag||6===i.tag){e:for(var u=e,c=i,s=n,f=c;;)if(ua(u,f,s),null!==f.child&&4!==f.tag)f.child.return=f,f=f.child;else{if(f===c)break e;for(;null===f.sibling;){if(null===f.return||f.return===c)break e;f=f.return}f.sibling.return=f.return,f=f.sibling}o?(u=r,c=i.stateNode,8===u.nodeType?u.parentNode.removeChild(c):u.removeChild(c)):r.removeChild(i.stateNode)}else if(4===i.tag){if(null!==i.child){r=i.stateNode.containerInfo,o=!0,i.child.return=i,i=i.child;continue}}else if(ua(e,i,n),null!==i.child){i.child.return=i,i=i.child;continue}if(i===t)break;for(;null===i.sibling;){if(null===i.return||i.return===t)return;4===(i=i.return).tag&&(a=!1)}i.sibling.return=i.return,i=i.sibling}}function ha(e,t){switch(t.tag){case 0:case 11:case 14:case 15:case 22:return void ia(3,t);case 1:case 12:case 17:return;case 5:var n=t.stateNode;if(null!=n){var r=t.memoizedProps,o=null!==e?e.memoizedProps:r;e=t.type;var i=t.updateQueue;if(t.updateQueue=null,null!==i){for(n[_n]=r,"input"===e&&"radio"===r.type&&null!=r.name&&Te(n,r),on(e,o),t=on(e,r),o=0;o<i.length;o+=2){var a=i[o],u=i[o+1];"style"===a?tn(n,u):"dangerouslySetInnerHTML"===a?De(n,u):"children"===a?je(n,u):G(n,a,u,t)}switch(e){case"input":Se(n,r);break;case"textarea":Me(n,r);break;case"select":t=n._wrapperState.wasMultiple,n._wrapperState.wasMultiple=!!r.multiple,null!=(e=r.value)?Ne(n,!!r.multiple,e,!1):t!==!!r.multiple&&(null!=r.defaultValue?Ne(n,!!r.multiple,r.defaultValue,!0):Ne(n,!!r.multiple,r.multiple?[]:"",!1))}}}return;case 6:if(null===t.stateNode)throw Error(l(162));return void(t.stateNode.nodeValue=t.memoizedProps);case 3:return void((t=t.stateNode).hydrate&&(t.hydrate=!1,Ft(t.containerInfo)));case 13:if(n=t,null===t.memoizedState?r=!1:(r=!0,n=t.child,Da=Vo()),null!==n)e:for(e=n;;){if(5===e.tag)i=e.stateNode,r?"function"==typeof(i=i.style).setProperty?i.setProperty("display","none","important"):i.display="none":(i=e.stateNode,o=null!=(o=e.memoizedProps.style)&&o.hasOwnProperty("display")?o.display:null,i.style.display=en("display",o));else if(6===e.tag)e.stateNode.nodeValue=r?"":e.memoizedProps;else{if(13===e.tag&&null!==e.memoizedState&&null===e.memoizedState.dehydrated){(i=e.child.sibling).return=e,e=i;continue}if(null!==e.child){e.child.return=e,e=e.child;continue}}if(e===n)break;for(;null===e.sibling;){if(null===e.return||e.return===n)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}return void va(t);case 19:return void va(t)}throw Error(l(163))}function va(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n&&(n=e.stateNode=new ta),t.forEach((function(t){var r=Tu.bind(null,e,t);n.has(t)||(n.add(t),t.then(r,r))}))}}var ya="function"==typeof WeakMap?WeakMap:Map;function ga(e,t,n){(n=si(n,null)).tag=3,n.payload={element:null};var r=t.value;return n.callback=function(){Ua||(Ua=!0,$a=r),na(e,t)},n}function ba(e,t,n){(n=si(n,null)).tag=3;var r=e.type.getDerivedStateFromError;if("function"==typeof r){var o=t.value;n.payload=function(){return na(e,t),r(o)}}var i=e.stateNode;return null!==i&&"function"==typeof i.componentDidCatch&&(n.callback=function(){"function"!=typeof r&&(null===Va?Va=new Set([this]):Va.add(this),na(e,t));var n=t.stack;this.componentDidCatch(t.value,{componentStack:null!==n?n:""})}),n}var wa,xa=Math.ceil,ka=X.ReactCurrentDispatcher,Ea=X.ReactCurrentOwner,Ta=0,Sa=3,Ca=4,_a=0,Pa=null,Na=null,Oa=0,Ra=Ta,Ma=null,za=1073741823,Ia=1073741823,Fa=null,Aa=0,La=!1,Da=0,ja=null,Ua=!1,$a=null,Va=null,Wa=!1,Ba=null,Qa=90,Ha=null,Ka=0,qa=null,Ya=0;function Xa(){return 0!=(48&_a)?1073741821-(Vo()/10|0):0!==Ya?Ya:Ya=1073741821-(Vo()/10|0)}function Ga(e,t,n){if(0==(2&(t=t.mode)))return 1073741823;var r=Wo();if(0==(4&t))return 99===r?1073741823:1073741822;if(0!=(16&_a))return Oa;if(null!==n)e=Xo(e,0|n.timeoutMs||5e3,250);else switch(r){case 99:e=1073741823;break;case 98:e=Xo(e,150,100);break;case 97:case 96:e=Xo(e,5e3,250);break;case 95:e=2;break;default:throw Error(l(326))}return null!==Pa&&e===Oa&&--e,e}function Za(e,t){if(50<Ka)throw Ka=0,qa=null,Error(l(185));if(null!==(e=Ja(e,t))){var n=Wo();1073741823===t?0!=(8&_a)&&0==(48&_a)?ru(e):(tu(e),0===_a&&qo()):tu(e),0==(4&_a)||98!==n&&99!==n||(null===Ha?Ha=new Map([[e,t]]):(void 0===(n=Ha.get(e))||n>t)&&Ha.set(e,t))}}function Ja(e,t){e.expirationTime<t&&(e.expirationTime=t);var n=e.alternate;null!==n&&n.expirationTime<t&&(n.expirationTime=t);var r=e.return,o=null;if(null===r&&3===e.tag)o=e.stateNode;else for(;null!==r;){if(n=r.alternate,r.childExpirationTime<t&&(r.childExpirationTime=t),null!==n&&n.childExpirationTime<t&&(n.childExpirationTime=t),null===r.return&&3===r.tag){o=r.stateNode;break}r=r.return}return null!==o&&(Pa===o&&(su(t),Ra===Ca&&Lu(o,Oa)),Du(o,t)),o}function eu(e){var t=e.lastExpiredTime;if(0!==t)return t;if(!Au(e,t=e.firstPendingTime))return t;var n=e.lastPingedTime;return 2>=(e=n>(e=e.nextKnownPendingLevel)?n:e)&&t!==e?0:e}function tu(e){if(0!==e.lastExpiredTime)e.callbackExpirationTime=1073741823,e.callbackPriority=99,e.callbackNode=Ko(ru.bind(null,e));else{var t=eu(e),n=e.callbackNode;if(0===t)null!==n&&(e.callbackNode=null,e.callbackExpirationTime=0,e.callbackPriority=90);else{var r=Xa();if(r=1073741823===t?99:1===t||2===t?95:0>=(r=10*(1073741821-t)-10*(1073741821-r))?99:250>=r?98:5250>=r?97:95,null!==n){var o=e.callbackPriority;if(e.callbackExpirationTime===t&&o>=r)return;n!==Fo&&Co(n)}e.callbackExpirationTime=t,e.callbackPriority=r,t=1073741823===t?Ko(ru.bind(null,e)):Ho(r,nu.bind(null,e),{timeout:10*(1073741821-t)-Vo()}),e.callbackNode=t}}}function nu(e,t){if(Ya=0,t)return ju(e,t=Xa()),tu(e),null;var n=eu(e);if(0!==n){if(t=e.callbackNode,0!=(48&_a))throw Error(l(327));if(bu(),e===Pa&&n===Oa||lu(e,n),null!==Na){var r=_a;_a|=16;for(var o=uu();;)try{du();break}catch(t){au(e,t)}if(ni(),_a=r,ka.current=o,1===Ra)throw t=Ma,lu(e,n),Lu(e,n),tu(e),t;if(null===Na)switch(o=e.finishedWork=e.current.alternate,e.finishedExpirationTime=n,r=Ra,Pa=null,r){case Ta:case 1:throw Error(l(345));case 2:ju(e,2<n?2:n);break;case Sa:if(Lu(e,n),n===(r=e.lastSuspendedTime)&&(e.nextKnownPendingLevel=hu(o)),1073741823===za&&10<(o=Da+500-Vo())){if(La){var i=e.lastPingedTime;if(0===i||i>=n){e.lastPingedTime=n,lu(e,n);break}}if(0!==(i=eu(e))&&i!==n)break;if(0!==r&&r!==n){e.lastPingedTime=r;break}e.timeoutHandle=xn(vu.bind(null,e),o);break}vu(e);break;case Ca:if(Lu(e,n),n===(r=e.lastSuspendedTime)&&(e.nextKnownPendingLevel=hu(o)),La&&(0===(o=e.lastPingedTime)||o>=n)){e.lastPingedTime=n,lu(e,n);break}if(0!==(o=eu(e))&&o!==n)break;if(0!==r&&r!==n){e.lastPingedTime=r;break}if(1073741823!==Ia?r=10*(1073741821-Ia)-Vo():1073741823===za?r=0:(r=10*(1073741821-za)-5e3,0>(r=(o=Vo())-r)&&(r=0),(n=10*(1073741821-n)-o)<(r=(120>r?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*xa(r/1960))-r)&&(r=n)),10<r){e.timeoutHandle=xn(vu.bind(null,e),r);break}vu(e);break;case 5:if(1073741823!==za&&null!==Fa){i=za;var a=Fa;if(0>=(r=0|a.busyMinDurationMs)?r=0:(o=0|a.busyDelayMs,r=(i=Vo()-(10*(1073741821-i)-(0|a.timeoutMs||5e3)))<=o?0:o+r-i),10<r){Lu(e,n),e.timeoutHandle=xn(vu.bind(null,e),r);break}}vu(e);break;default:throw Error(l(329))}if(tu(e),e.callbackNode===t)return nu.bind(null,e)}}return null}function ru(e){var t=e.lastExpiredTime;if(t=0!==t?t:1073741823,0!=(48&_a))throw Error(l(327));if(bu(),e===Pa&&t===Oa||lu(e,t),null!==Na){var n=_a;_a|=16;for(var r=uu();;)try{fu();break}catch(t){au(e,t)}if(ni(),_a=n,ka.current=r,1===Ra)throw n=Ma,lu(e,t),Lu(e,t),tu(e),n;if(null!==Na)throw Error(l(261));e.finishedWork=e.current.alternate,e.finishedExpirationTime=t,Pa=null,vu(e),tu(e)}return null}function ou(e,t){var n=_a;_a|=1;try{return e(t)}finally{0===(_a=n)&&qo()}}function iu(e,t){var n=_a;_a&=-2,_a|=8;try{return e(t)}finally{0===(_a=n)&&qo()}}function lu(e,t){e.finishedWork=null,e.finishedExpirationTime=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,kn(n)),null!==Na)for(n=Na.return;null!==n;){var r=n;switch(r.tag){case 1:null!=(r=r.type.childContextTypes)&&bo();break;case 3:Fi(),so(ho),so(mo);break;case 5:Li(r);break;case 4:Fi();break;case 13:case 19:so(Di);break;case 10:ri(r)}n=n.return}Pa=e,Na=Ou(e.current,null),Oa=t,Ra=Ta,Ma=null,Ia=za=1073741823,Fa=null,Aa=0,La=!1}function au(e,t){for(;;){try{if(ni(),$i.current=gl,Ki)for(var n=Bi.memoizedState;null!==n;){var r=n.queue;null!==r&&(r.pending=null),n=n.next}if(Wi=0,Hi=Qi=Bi=null,Ki=!1,null===Na||null===Na.return)return Ra=1,Ma=t,Na=null;e:{var o=e,i=Na.return,l=Na,a=t;if(t=Oa,l.effectTag|=2048,l.firstEffect=l.lastEffect=null,null!==a&&"object"==typeof a&&"function"==typeof a.then){var u=a;if(0==(2&l.mode)){var c=l.alternate;c?(l.updateQueue=c.updateQueue,l.memoizedState=c.memoizedState,l.expirationTime=c.expirationTime):(l.updateQueue=null,l.memoizedState=null)}var s=0!=(1&Di.current),f=i;do{var d;if(d=13===f.tag){var p=f.memoizedState;if(null!==p)d=null!==p.dehydrated;else{var m=f.memoizedProps;d=void 0!==m.fallback&&(!0!==m.unstable_avoidThisFallback||!s)}}if(d){var h=f.updateQueue;if(null===h){var v=new Set;v.add(u),f.updateQueue=v}else h.add(u);if(0==(2&f.mode)){if(f.effectTag|=64,l.effectTag&=-2981,1===l.tag)if(null===l.alternate)l.tag=17;else{var y=si(1073741823,null);y.tag=2,fi(l,y)}l.expirationTime=1073741823;break e}a=void 0,l=t;var g=o.pingCache;if(null===g?(g=o.pingCache=new ya,a=new Set,g.set(u,a)):void 0===(a=g.get(u))&&(a=new Set,g.set(u,a)),!a.has(l)){a.add(l);var b=Eu.bind(null,o,u,l);u.then(b,b)}f.effectTag|=4096,f.expirationTime=t;break e}f=f.return}while(null!==f);a=Error((ve(l.type)||"A React component")+" suspended while rendering, but no fallback UI was specified.\n\nAdd a <Suspense fallback=...> component higher in the tree to provide a loading indicator or placeholder to display."+ye(l))}5!==Ra&&(Ra=2),a=ea(a,l),f=i;do{switch(f.tag){case 3:u=a,f.effectTag|=4096,f.expirationTime=t,di(f,ga(f,u,t));break e;case 1:u=a;var w=f.type,x=f.stateNode;if(0==(64&f.effectTag)&&("function"==typeof w.getDerivedStateFromError||null!==x&&"function"==typeof x.componentDidCatch&&(null===Va||!Va.has(x)))){f.effectTag|=4096,f.expirationTime=t,di(f,ba(f,u,t));break e}}f=f.return}while(null!==f)}Na=mu(Na)}catch(e){t=e;continue}break}}function uu(){var e=ka.current;return ka.current=gl,null===e?gl:e}function cu(e,t){e<za&&2<e&&(za=e),null!==t&&e<Ia&&2<e&&(Ia=e,Fa=t)}function su(e){e>Aa&&(Aa=e)}function fu(){for(;null!==Na;)Na=pu(Na)}function du(){for(;null!==Na&&!Ao();)Na=pu(Na)}function pu(e){var t=wa(e.alternate,e,Oa);return e.memoizedProps=e.pendingProps,null===t&&(t=mu(e)),Ea.current=null,t}function mu(e){Na=e;do{var t=Na.alternate;if(e=Na.return,0==(2048&Na.effectTag)){if(t=Zl(t,Na,Oa),1===Oa||1!==Na.childExpirationTime){for(var n=0,r=Na.child;null!==r;){var o=r.expirationTime,i=r.childExpirationTime;o>n&&(n=o),i>n&&(n=i),r=r.sibling}Na.childExpirationTime=n}if(null!==t)return t;null!==e&&0==(2048&e.effectTag)&&(null===e.firstEffect&&(e.firstEffect=Na.firstEffect),null!==Na.lastEffect&&(null!==e.lastEffect&&(e.lastEffect.nextEffect=Na.firstEffect),e.lastEffect=Na.lastEffect),1<Na.effectTag&&(null!==e.lastEffect?e.lastEffect.nextEffect=Na:e.firstEffect=Na,e.lastEffect=Na))}else{if(null!==(t=Jl(Na)))return t.effectTag&=2047,t;null!==e&&(e.firstEffect=e.lastEffect=null,e.effectTag|=2048)}if(null!==(t=Na.sibling))return t;Na=e}while(null!==Na);return Ra===Ta&&(Ra=5),null}function hu(e){var t=e.expirationTime;return t>(e=e.childExpirationTime)?t:e}function vu(e){var t=Wo();return Qo(99,yu.bind(null,e,t)),null}function yu(e,t){do{bu()}while(null!==Ba);if(0!=(48&_a))throw Error(l(327));var n=e.finishedWork,r=e.finishedExpirationTime;if(null===n)return null;if(e.finishedWork=null,e.finishedExpirationTime=0,n===e.current)throw Error(l(177));e.callbackNode=null,e.callbackExpirationTime=0,e.callbackPriority=90,e.nextKnownPendingLevel=0;var o=hu(n);if(e.firstPendingTime=o,r<=e.lastSuspendedTime?e.firstSuspendedTime=e.lastSuspendedTime=e.nextKnownPendingLevel=0:r<=e.firstSuspendedTime&&(e.firstSuspendedTime=r-1),r<=e.lastPingedTime&&(e.lastPingedTime=0),r<=e.lastExpiredTime&&(e.lastExpiredTime=0),e===Pa&&(Na=Pa=null,Oa=0),1<n.effectTag?null!==n.lastEffect?(n.lastEffect.nextEffect=n,o=n.firstEffect):o=n:o=n.firstEffect,null!==o){var i=_a;_a|=32,Ea.current=null,yn=Qt;var a=pn();if(mn(a)){if("selectionStart"in a)var u={start:a.selectionStart,end:a.selectionEnd};else e:{var c=(u=(u=a.ownerDocument)&&u.defaultView||window).getSelection&&u.getSelection();if(c&&0!==c.rangeCount){u=c.anchorNode;var s=c.anchorOffset,f=c.focusNode;c=c.focusOffset;try{u.nodeType,f.nodeType}catch(e){u=null;break e}var d=0,p=-1,m=-1,h=0,v=0,y=a,g=null;t:for(;;){for(var b;y!==u||0!==s&&3!==y.nodeType||(p=d+s),y!==f||0!==c&&3!==y.nodeType||(m=d+c),3===y.nodeType&&(d+=y.nodeValue.length),null!==(b=y.firstChild);)g=y,y=b;for(;;){if(y===a)break t;if(g===u&&++h===s&&(p=d),g===f&&++v===c&&(m=d),null!==(b=y.nextSibling))break;g=(y=g).parentNode}y=b}u=-1===p||-1===m?null:{start:p,end:m}}else u=null}u=u||{start:0,end:0}}else u=null;gn={activeElementDetached:null,focusedElem:a,selectionRange:u},Qt=!1,ja=o;do{try{gu()}catch(e){if(null===ja)throw Error(l(330));ku(ja,e),ja=ja.nextEffect}}while(null!==ja);ja=o;do{try{for(a=e,u=t;null!==ja;){var w=ja.effectTag;if(16&w&&je(ja.stateNode,""),128&w){var x=ja.alternate;if(null!==x){var k=x.ref;null!==k&&("function"==typeof k?k(null):k.current=null)}}switch(1038&w){case 2:fa(ja),ja.effectTag&=-3;break;case 6:fa(ja),ja.effectTag&=-3,ha(ja.alternate,ja);break;case 1024:ja.effectTag&=-1025;break;case 1028:ja.effectTag&=-1025,ha(ja.alternate,ja);break;case 4:ha(ja.alternate,ja);break;case 8:ma(a,s=ja,u),ca(s)}ja=ja.nextEffect}}catch(e){if(null===ja)throw Error(l(330));ku(ja,e),ja=ja.nextEffect}}while(null!==ja);if(k=gn,x=pn(),w=k.focusedElem,u=k.selectionRange,x!==w&&w&&w.ownerDocument&&dn(w.ownerDocument.documentElement,w)){null!==u&&mn(w)&&(x=u.start,void 0===(k=u.end)&&(k=x),"selectionStart"in w?(w.selectionStart=x,w.selectionEnd=Math.min(k,w.value.length)):(k=(x=w.ownerDocument||document)&&x.defaultView||window).getSelection&&(k=k.getSelection(),s=w.textContent.length,a=Math.min(u.start,s),u=void 0===u.end?a:Math.min(u.end,s),!k.extend&&a>u&&(s=u,u=a,a=s),s=fn(w,a),f=fn(w,u),s&&f&&(1!==k.rangeCount||k.anchorNode!==s.node||k.anchorOffset!==s.offset||k.focusNode!==f.node||k.focusOffset!==f.offset)&&((x=x.createRange()).setStart(s.node,s.offset),k.removeAllRanges(),a>u?(k.addRange(x),k.extend(f.node,f.offset)):(x.setEnd(f.node,f.offset),k.addRange(x))))),x=[];for(k=w;k=k.parentNode;)1===k.nodeType&&x.push({element:k,left:k.scrollLeft,top:k.scrollTop});for("function"==typeof w.focus&&w.focus(),w=0;w<x.length;w++)(k=x[w]).element.scrollLeft=k.left,k.element.scrollTop=k.top}Qt=!!yn,gn=yn=null,e.current=n,ja=o;do{try{for(w=e;null!==ja;){var E=ja.effectTag;if(36&E&&aa(w,ja.alternate,ja),128&E){x=void 0;var T=ja.ref;if(null!==T){var S=ja.stateNode;ja.tag,x=S,"function"==typeof T?T(x):T.current=x}}ja=ja.nextEffect}}catch(e){if(null===ja)throw Error(l(330));ku(ja,e),ja=ja.nextEffect}}while(null!==ja);ja=null,Lo(),_a=i}else e.current=n;if(Wa)Wa=!1,Ba=e,Qa=t;else for(ja=o;null!==ja;)t=ja.nextEffect,ja.nextEffect=null,ja=t;if(0===(t=e.firstPendingTime)&&(Va=null),1073741823===t?e===qa?Ka++:(Ka=0,qa=e):Ka=0,"function"==typeof Su&&Su(n.stateNode,r),tu(e),Ua)throw Ua=!1,e=$a,$a=null,e;return 0!=(8&_a)||qo(),null}function gu(){for(;null!==ja;){var e=ja.effectTag;0!=(256&e)&&oa(ja.alternate,ja),0==(512&e)||Wa||(Wa=!0,Ho(97,(function(){return bu(),null}))),ja=ja.nextEffect}}function bu(){if(90!==Qa){var e=97<Qa?97:Qa;return Qa=90,Qo(e,wu)}}function wu(){if(null===Ba)return!1;var e=Ba;if(Ba=null,0!=(48&_a))throw Error(l(331));var t=_a;for(_a|=32,e=e.current.firstEffect;null!==e;){try{var n=e;if(0!=(512&n.effectTag))switch(n.tag){case 0:case 11:case 15:case 22:ia(5,n),la(5,n)}}catch(t){if(null===e)throw Error(l(330));ku(e,t)}n=e.nextEffect,e.nextEffect=null,e=n}return _a=t,qo(),!0}function xu(e,t,n){fi(e,t=ga(e,t=ea(n,t),1073741823)),null!==(e=Ja(e,1073741823))&&tu(e)}function ku(e,t){if(3===e.tag)xu(e,e,t);else for(var n=e.return;null!==n;){if(3===n.tag){xu(n,e,t);break}if(1===n.tag){var r=n.stateNode;if("function"==typeof n.type.getDerivedStateFromError||"function"==typeof r.componentDidCatch&&(null===Va||!Va.has(r))){fi(n,e=ba(n,e=ea(t,e),1073741823)),null!==(n=Ja(n,1073741823))&&tu(n);break}}n=n.return}}function Eu(e,t,n){var r=e.pingCache;null!==r&&r.delete(t),Pa===e&&Oa===n?Ra===Ca||Ra===Sa&&1073741823===za&&Vo()-Da<500?lu(e,Oa):La=!0:Au(e,n)&&(0!==(t=e.lastPingedTime)&&t<n||(e.lastPingedTime=n,tu(e)))}function Tu(e,t){var n=e.stateNode;null!==n&&n.delete(t),0==(t=0)&&(t=Ga(t=Xa(),e,null)),null!==(e=Ja(e,t))&&tu(e)}wa=function(e,t,n){var r=t.expirationTime;if(null!==e){var o=t.pendingProps;if(e.memoizedProps!==o||ho.current)Ml=!0;else{if(r<n){switch(Ml=!1,t.tag){case 3:$l(t),Ol();break;case 5:if(Ai(t),4&t.mode&&1!==n&&o.hidden)return t.expirationTime=t.childExpirationTime=1,null;break;case 1:go(t.type)&&ko(t);break;case 4:Ii(t,t.stateNode.containerInfo);break;case 10:r=t.memoizedProps.value,o=t.type._context,fo(Zo,o._currentValue),o._currentValue=r;break;case 13:if(null!==t.memoizedState)return 0!==(r=t.child.childExpirationTime)&&r>=n?Hl(e,t,n):(fo(Di,1&Di.current),null!==(t=Xl(e,t,n))?t.sibling:null);fo(Di,1&Di.current);break;case 19:if(r=t.childExpirationTime>=n,0!=(64&e.effectTag)){if(r)return Yl(e,t,n);t.effectTag|=64}if(null!==(o=t.memoizedState)&&(o.rendering=null,o.tail=null),fo(Di,Di.current),!r)return null}return Xl(e,t,n)}Ml=!1}}else Ml=!1;switch(t.expirationTime=0,t.tag){case 2:if(r=t.type,null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),e=t.pendingProps,o=yo(t,mo.current),ii(t,n),o=Xi(null,t,r,e,o,n),t.effectTag|=1,"object"==typeof o&&null!==o&&"function"==typeof o.render&&void 0===o.$$typeof){if(t.tag=1,t.memoizedState=null,t.updateQueue=null,go(r)){var i=!0;ko(t)}else i=!1;t.memoizedState=null!==o.state&&void 0!==o.state?o.state:null,ui(t);var a=r.getDerivedStateFromProps;"function"==typeof a&&yi(t,r,a,e),o.updater=gi,t.stateNode=o,o._reactInternalFiber=t,ki(t,r,e,n),t=Ul(null,t,r,!0,i,n)}else t.tag=0,zl(null,t,o,n),t=t.child;return t;case 16:e:{if(o=t.elementType,null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),e=t.pendingProps,function(e){if(-1===e._status){e._status=0;var t=e._ctor;t=t(),e._result=t,t.then((function(t){0===e._status&&(t=t.default,e._status=1,e._result=t)}),(function(t){0===e._status&&(e._status=2,e._result=t)}))}}(o),1!==o._status)throw o._result;switch(o=o._result,t.type=o,i=t.tag=function(e){if("function"==typeof e)return Nu(e)?1:0;if(null!=e){if((e=e.$$typeof)===ue)return 11;if(e===fe)return 14}return 2}(o),e=Go(o,e),i){case 0:t=Dl(null,t,o,e,n);break e;case 1:t=jl(null,t,o,e,n);break e;case 11:t=Il(null,t,o,e,n);break e;case 14:t=Fl(null,t,o,Go(o.type,e),r,n);break e}throw Error(l(306,o,""))}return t;case 0:return r=t.type,o=t.pendingProps,Dl(e,t,r,o=t.elementType===r?o:Go(r,o),n);case 1:return r=t.type,o=t.pendingProps,jl(e,t,r,o=t.elementType===r?o:Go(r,o),n);case 3:if($l(t),r=t.updateQueue,null===e||null===r)throw Error(l(282));if(r=t.pendingProps,o=null!==(o=t.memoizedState)?o.element:null,ci(e,t),pi(t,r,null,n),(r=t.memoizedState.element)===o)Ol(),t=Xl(e,t,n);else{if((o=t.stateNode.hydrate)&&(El=En(t.stateNode.containerInfo.firstChild),kl=t,o=Tl=!0),o)for(n=Pi(t,null,r,n),t.child=n;n;)n.effectTag=-3&n.effectTag|1024,n=n.sibling;else zl(e,t,r,n),Ol();t=t.child}return t;case 5:return Ai(t),null===e&&_l(t),r=t.type,o=t.pendingProps,i=null!==e?e.memoizedProps:null,a=o.children,wn(r,o)?a=null:null!==i&&wn(r,i)&&(t.effectTag|=16),Ll(e,t),4&t.mode&&1!==n&&o.hidden?(t.expirationTime=t.childExpirationTime=1,t=null):(zl(e,t,a,n),t=t.child),t;case 6:return null===e&&_l(t),null;case 13:return Hl(e,t,n);case 4:return Ii(t,t.stateNode.containerInfo),r=t.pendingProps,null===e?t.child=_i(t,null,r,n):zl(e,t,r,n),t.child;case 11:return r=t.type,o=t.pendingProps,Il(e,t,r,o=t.elementType===r?o:Go(r,o),n);case 7:return zl(e,t,t.pendingProps,n),t.child;case 8:case 12:return zl(e,t,t.pendingProps.children,n),t.child;case 10:e:{r=t.type._context,o=t.pendingProps,a=t.memoizedProps,i=o.value;var u=t.type._context;if(fo(Zo,u._currentValue),u._currentValue=i,null!==a)if(u=a.value,0==(i=jr(u,i)?0:0|("function"==typeof r._calculateChangedBits?r._calculateChangedBits(u,i):1073741823))){if(a.children===o.children&&!ho.current){t=Xl(e,t,n);break e}}else for(null!==(u=t.child)&&(u.return=t);null!==u;){var c=u.dependencies;if(null!==c){a=u.child;for(var s=c.firstContext;null!==s;){if(s.context===r&&0!=(s.observedBits&i)){1===u.tag&&((s=si(n,null)).tag=2,fi(u,s)),u.expirationTime<n&&(u.expirationTime=n),null!==(s=u.alternate)&&s.expirationTime<n&&(s.expirationTime=n),oi(u.return,n),c.expirationTime<n&&(c.expirationTime=n);break}s=s.next}}else a=10===u.tag&&u.type===t.type?null:u.child;if(null!==a)a.return=u;else for(a=u;null!==a;){if(a===t){a=null;break}if(null!==(u=a.sibling)){u.return=a.return,a=u;break}a=a.return}u=a}zl(e,t,o.children,n),t=t.child}return t;case 9:return o=t.type,r=(i=t.pendingProps).children,ii(t,n),r=r(o=li(o,i.unstable_observedBits)),t.effectTag|=1,zl(e,t,r,n),t.child;case 14:return i=Go(o=t.type,t.pendingProps),Fl(e,t,o,i=Go(o.type,i),r,n);case 15:return Al(e,t,t.type,t.pendingProps,r,n);case 17:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:Go(r,o),null!==e&&(e.alternate=null,t.alternate=null,t.effectTag|=2),t.tag=1,go(r)?(e=!0,ko(t)):e=!1,ii(t,n),wi(t,r,o),ki(t,r,o,n),Ul(null,t,r,!0,e,n);case 19:return Yl(e,t,n)}throw Error(l(156,t.tag))};var Su=null,Cu=null;function _u(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.effectTag=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childExpirationTime=this.expirationTime=0,this.alternate=null}function Pu(e,t,n,r){return new _u(e,t,n,r)}function Nu(e){return!(!(e=e.prototype)||!e.isReactComponent)}function Ou(e,t){var n=e.alternate;return null===n?((n=Pu(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.effectTag=0,n.nextEffect=null,n.firstEffect=null,n.lastEffect=null),n.childExpirationTime=e.childExpirationTime,n.expirationTime=e.expirationTime,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=null===t?null:{expirationTime:t.expirationTime,firstContext:t.firstContext,responders:t.responders},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function Ru(e,t,n,r,o,i){var a=2;if(r=e,"function"==typeof e)Nu(e)&&(a=1);else if("string"==typeof e)a=5;else e:switch(e){case ne:return Mu(n.children,o,i,t);case ae:a=8,o|=7;break;case re:a=8,o|=1;break;case oe:return(e=Pu(12,n,t,8|o)).elementType=oe,e.type=oe,e.expirationTime=i,e;case ce:return(e=Pu(13,n,t,o)).type=ce,e.elementType=ce,e.expirationTime=i,e;case se:return(e=Pu(19,n,t,o)).elementType=se,e.expirationTime=i,e;default:if("object"==typeof e&&null!==e)switch(e.$$typeof){case ie:a=10;break e;case le:a=9;break e;case ue:a=11;break e;case fe:a=14;break e;case de:a=16,r=null;break e;case pe:a=22;break e}throw Error(l(130,null==e?e:typeof e,""))}return(t=Pu(a,n,t,o)).elementType=e,t.type=r,t.expirationTime=i,t}function Mu(e,t,n,r){return(e=Pu(7,e,r,t)).expirationTime=n,e}function zu(e,t,n){return(e=Pu(6,e,null,t)).expirationTime=n,e}function Iu(e,t,n){return(t=Pu(4,null!==e.children?e.children:[],e.key,t)).expirationTime=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function Fu(e,t,n){this.tag=t,this.current=null,this.containerInfo=e,this.pingCache=this.pendingChildren=null,this.finishedExpirationTime=0,this.finishedWork=null,this.timeoutHandle=-1,this.pendingContext=this.context=null,this.hydrate=n,this.callbackNode=null,this.callbackPriority=90,this.lastExpiredTime=this.lastPingedTime=this.nextKnownPendingLevel=this.lastSuspendedTime=this.firstSuspendedTime=this.firstPendingTime=0}function Au(e,t){var n=e.firstSuspendedTime;return e=e.lastSuspendedTime,0!==n&&n>=t&&e<=t}function Lu(e,t){var n=e.firstSuspendedTime,r=e.lastSuspendedTime;n<t&&(e.firstSuspendedTime=t),(r>t||0===n)&&(e.lastSuspendedTime=t),t<=e.lastPingedTime&&(e.lastPingedTime=0),t<=e.lastExpiredTime&&(e.lastExpiredTime=0)}function Du(e,t){t>e.firstPendingTime&&(e.firstPendingTime=t);var n=e.firstSuspendedTime;0!==n&&(t>=n?e.firstSuspendedTime=e.lastSuspendedTime=e.nextKnownPendingLevel=0:t>=e.lastSuspendedTime&&(e.lastSuspendedTime=t+1),t>e.nextKnownPendingLevel&&(e.nextKnownPendingLevel=t))}function ju(e,t){var n=e.lastExpiredTime;(0===n||n>t)&&(e.lastExpiredTime=t)}function Uu(e,t,n,r){var o=t.current,i=Xa(),a=hi.suspense;i=Ga(i,o,a);e:if(n){t:{if(Ze(n=n._reactInternalFiber)!==n||1!==n.tag)throw Error(l(170));var u=n;do{switch(u.tag){case 3:u=u.stateNode.context;break t;case 1:if(go(u.type)){u=u.stateNode.__reactInternalMemoizedMergedChildContext;break t}}u=u.return}while(null!==u);throw Error(l(171))}if(1===n.tag){var c=n.type;if(go(c)){n=xo(n,c,u);break e}}n=u}else n=po;return null===t.context?t.context=n:t.pendingContext=n,(t=si(i,a)).payload={element:e},null!==(r=void 0===r?null:r)&&(t.callback=r),fi(o,t),Za(o,i),i}function $u(e){return(e=e.current).child?(e.child.tag,e.child.stateNode):null}function Vu(e,t){null!==(e=e.memoizedState)&&null!==e.dehydrated&&e.retryTime<t&&(e.retryTime=t)}function Wu(e,t){Vu(e,t),(e=e.alternate)&&Vu(e,t)}function Bu(e,t,n){var r=new Fu(e,t,n=null!=n&&!0===n.hydrate),o=Pu(3,null,null,2===t?7:1===t?3:0);r.current=o,o.stateNode=r,ui(o),e[Pn]=r.current,n&&0!==t&&function(e,t){var n=Ge(t);St.forEach((function(e){pt(e,t,n)})),Ct.forEach((function(e){pt(e,t,n)}))}(0,9===e.nodeType?e:e.ownerDocument),this._internalRoot=r}function Qu(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||" react-mount-point-unstable "!==e.nodeValue))}function Hu(e,t,n,r,o){var i=n._reactRootContainer;if(i){var l=i._internalRoot;if("function"==typeof o){var a=o;o=function(){var e=$u(l);a.call(e)}}Uu(t,l,e,o)}else{if(i=n._reactRootContainer=function(e,t){if(t||(t=!(!(t=e?9===e.nodeType?e.documentElement:e.firstChild:null)||1!==t.nodeType||!t.hasAttribute("data-reactroot"))),!t)for(var n;n=e.lastChild;)e.removeChild(n);return new Bu(e,0,t?{hydrate:!0}:void 0)}(n,r),l=i._internalRoot,"function"==typeof o){var u=o;o=function(){var e=$u(l);u.call(e)}}iu((function(){Uu(t,l,e,o)}))}return $u(l)}function Ku(e,t,n){var r=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:te,key:null==r?null:""+r,children:e,containerInfo:t,implementation:n}}function qu(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!Qu(t))throw Error(l(200));return Ku(e,t,null,n)}Bu.prototype.render=function(e){Uu(e,this._internalRoot,null,null)},Bu.prototype.unmount=function(){var e=this._internalRoot,t=e.containerInfo;Uu(null,e,null,(function(){t[Pn]=null}))},mt=function(e){if(13===e.tag){var t=Xo(Xa(),150,100);Za(e,t),Wu(e,t)}},ht=function(e){13===e.tag&&(Za(e,3),Wu(e,3))},vt=function(e){if(13===e.tag){var t=Xa();Za(e,t=Ga(t,e,null)),Wu(e,t)}},P=function(e,t,n){switch(t){case"input":if(Se(e,n),t=n.name,"radio"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll("input[name="+JSON.stringify(""+t)+'][type="radio"]'),t=0;t<n.length;t++){var r=n[t];if(r!==e&&r.form===e.form){var o=Mn(r);if(!o)throw Error(l(90));xe(r),Se(r,o)}}}break;case"textarea":Me(e,n);break;case"select":null!=(t=n.value)&&Ne(e,!!n.multiple,t,!1)}},I=ou,F=function(e,t,n,r,o){var i=_a;_a|=4;try{return Qo(98,e.bind(null,t,n,r,o))}finally{0===(_a=i)&&qo()}},A=function(){0==(49&_a)&&(function(){if(null!==Ha){var e=Ha;Ha=null,e.forEach((function(e,t){ju(t,e),tu(t)})),qo()}}(),bu())},L=function(e,t){var n=_a;_a|=2;try{return e(t)}finally{0===(_a=n)&&qo()}};var Yu={Events:[On,Rn,Mn,C,E,jn,function(e){rt(e,Dn)},M,z,Xt,lt,bu,{current:!1}]};!function(e){var t=e.findFiberByHostInstance;!function(e){if("undefined"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__)return!1;var t=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(t.isDisabled||!t.supportsFiber)return!0;try{var n=t.inject(e);Su=function(e){try{t.onCommitFiberRoot(n,e,void 0,64==(64&e.current.effectTag))}catch(e){}},Cu=function(e){try{t.onCommitFiberUnmount(n,e)}catch(e){}}}catch(e){}}(o({},e,{overrideHookState:null,overrideProps:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:X.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=tt(e))?null:e.stateNode},findFiberByHostInstance:function(e){return t?t(e):null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null}))}({findFiberByHostInstance:Nn,bundleType:0,version:"16.14.0",rendererPackageName:"react-dom"}),t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=Yu,t.createPortal=qu,t.findDOMNode=function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=e._reactInternalFiber;if(void 0===t){if("function"==typeof e.render)throw Error(l(188));throw Error(l(268,Object.keys(e)))}return null===(e=tt(t))?null:e.stateNode},t.flushSync=function(e,t){if(0!=(48&_a))throw Error(l(187));var n=_a;_a|=1;try{return Qo(99,e.bind(null,t))}finally{_a=n,qo()}},t.hydrate=function(e,t,n){if(!Qu(t))throw Error(l(200));return Hu(null,e,t,!0,n)},t.render=function(e,t,n){if(!Qu(t))throw Error(l(200));return Hu(null,e,t,!1,n)},t.unmountComponentAtNode=function(e){if(!Qu(e))throw Error(l(40));return!!e._reactRootContainer&&(iu((function(){Hu(null,null,e,!1,(function(){e._reactRootContainer=null,e[Pn]=null}))})),!0)},t.unstable_batchedUpdates=ou,t.unstable_createPortal=function(e,t){return qu(e,t,2<arguments.length&&void 0!==arguments[2]?arguments[2]:null)},t.unstable_renderSubtreeIntoContainer=function(e,t,n,r){if(!Qu(n))throw Error(l(200));if(null==e||void 0===e._reactInternalFiber)throw Error(l(38));return Hu(e,t,n,!1,r)},t.version="16.14.0"},935:(e,t,n)=>{"use strict";!function e(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}(),e.exports=n(448)},921:(e,t)=>{"use strict";var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,o=n?Symbol.for("react.portal"):60106,i=n?Symbol.for("react.fragment"):60107,l=n?Symbol.for("react.strict_mode"):60108,a=n?Symbol.for("react.profiler"):60114,u=n?Symbol.for("react.provider"):60109,c=n?Symbol.for("react.context"):60110,s=n?Symbol.for("react.async_mode"):60111,f=n?Symbol.for("react.concurrent_mode"):60111,d=n?Symbol.for("react.forward_ref"):60112,p=n?Symbol.for("react.suspense"):60113,m=n?Symbol.for("react.suspense_list"):60120,h=n?Symbol.for("react.memo"):60115,v=n?Symbol.for("react.lazy"):60116,y=n?Symbol.for("react.block"):60121,g=n?Symbol.for("react.fundamental"):60117,b=n?Symbol.for("react.responder"):60118,w=n?Symbol.for("react.scope"):60119;function x(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case s:case f:case i:case a:case l:case p:return e;default:switch(e=e&&e.$$typeof){case c:case d:case v:case h:case u:return e;default:return t}}case o:return t}}}function k(e){return x(e)===f}t.AsyncMode=s,t.ConcurrentMode=f,t.ContextConsumer=c,t.ContextProvider=u,t.Element=r,t.ForwardRef=d,t.Fragment=i,t.Lazy=v,t.Memo=h,t.Portal=o,t.Profiler=a,t.StrictMode=l,t.Suspense=p,t.isAsyncMode=function(e){return k(e)||x(e)===s},t.isConcurrentMode=k,t.isContextConsumer=function(e){return x(e)===c},t.isContextProvider=function(e){return x(e)===u},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return x(e)===d},t.isFragment=function(e){return x(e)===i},t.isLazy=function(e){return x(e)===v},t.isMemo=function(e){return x(e)===h},t.isPortal=function(e){return x(e)===o},t.isProfiler=function(e){return x(e)===a},t.isStrictMode=function(e){return x(e)===l},t.isSuspense=function(e){return x(e)===p},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===i||e===f||e===a||e===l||e===p||e===m||"object"==typeof e&&null!==e&&(e.$$typeof===v||e.$$typeof===h||e.$$typeof===u||e.$$typeof===c||e.$$typeof===d||e.$$typeof===g||e.$$typeof===b||e.$$typeof===w||e.$$typeof===y)},t.typeOf=x},864:(e,t,n)=>{"use strict";e.exports=n(921)},585:e=>{e.exports=Array.isArray||function(e){return"[object Array]"==Object.prototype.toString.call(e)}},658:(e,t,n)=>{var r=n(585);e.exports=function e(t,n,o){return r(n)||(o=n||o,n=[]),o=o||{},t instanceof RegExp?function(e,t){var n=e.source.match(/\((?!\?)/g);if(n)for(var r=0;r<n.length;r++)t.push({name:r,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return s(e,t)}(t,n):r(t)?function(t,n,r){for(var o=[],i=0;i<t.length;i++)o.push(e(t[i],n,r).source);return s(new RegExp("(?:"+o.join("|")+")",f(r)),n)}(t,n,o):function(e,t,n){return d(i(e,n),t,n)}(t,n,o)},e.exports.parse=i,e.exports.compile=function(e,t){return a(i(e,t),t)},e.exports.tokensToFunction=a,e.exports.tokensToRegExp=d;var o=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function i(e,t){for(var n,r=[],i=0,l=0,a="",s=t&&t.delimiter||"/";null!=(n=o.exec(e));){var f=n[0],d=n[1],p=n.index;if(a+=e.slice(l,p),l=p+f.length,d)a+=d[1];else{var m=e[l],h=n[2],v=n[3],y=n[4],g=n[5],b=n[6],w=n[7];a&&(r.push(a),a="");var x=null!=h&&null!=m&&m!==h,k="+"===b||"*"===b,E="?"===b||"*"===b,T=n[2]||s,S=y||g;r.push({name:v||i++,prefix:h||"",delimiter:T,optional:E,repeat:k,partial:x,asterisk:!!w,pattern:S?c(S):w?".*":"[^"+u(T)+"]+?"})}}return l<e.length&&(a+=e.substr(l)),a&&r.push(a),r}function l(e){return encodeURI(e).replace(/[\/?#]/g,(function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()}))}function a(e,t){for(var n=new Array(e.length),o=0;o<e.length;o++)"object"==typeof e[o]&&(n[o]=new RegExp("^(?:"+e[o].pattern+")$",f(t)));return function(t,o){for(var i="",a=t||{},u=(o||{}).pretty?l:encodeURIComponent,c=0;c<e.length;c++){var s=e[c];if("string"!=typeof s){var f,d=a[s.name];if(null==d){if(s.optional){s.partial&&(i+=s.prefix);continue}throw new TypeError('Expected "'+s.name+'" to be defined')}if(r(d)){if(!s.repeat)throw new TypeError('Expected "'+s.name+'" to not repeat, but received `'+JSON.stringify(d)+"`");if(0===d.length){if(s.optional)continue;throw new TypeError('Expected "'+s.name+'" to not be empty')}for(var p=0;p<d.length;p++){if(f=u(d[p]),!n[c].test(f))throw new TypeError('Expected all "'+s.name+'" to match "'+s.pattern+'", but received `'+JSON.stringify(f)+"`");i+=(0===p?s.prefix:s.delimiter)+f}}else{if(f=s.asterisk?encodeURI(d).replace(/[?#]/g,(function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()})):u(d),!n[c].test(f))throw new TypeError('Expected "'+s.name+'" to match "'+s.pattern+'", but received "'+f+'"');i+=s.prefix+f}}else i+=s}return i}}function u(e){return e.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function c(e){return e.replace(/([=!:$\/()])/g,"\\$1")}function s(e,t){return e.keys=t,e}function f(e){return e&&e.sensitive?"":"i"}function d(e,t,n){r(t)||(n=t||n,t=[]);for(var o=(n=n||{}).strict,i=!1!==n.end,l="",a=0;a<e.length;a++){var c=e[a];if("string"==typeof c)l+=u(c);else{var d=u(c.prefix),p="(?:"+c.pattern+")";t.push(c),c.repeat&&(p+="(?:"+d+p+")*"),l+=p=c.optional?c.partial?d+"("+p+")?":"(?:"+d+"("+p+"))?":d+"("+p+")"}}var m=u(n.delimiter||"/"),h=l.slice(-m.length)===m;return o||(l=(h?l.slice(0,-m.length):l)+"(?:"+m+"(?=$))?"),l+=i?"$":o&&h?"":"(?="+m+"|$)",s(new RegExp("^"+l,f(n)),t)}},408:(e,t,n)=>{"use strict";var r=n(418),o="function"==typeof Symbol&&Symbol.for,i=o?Symbol.for("react.element"):60103,l=o?Symbol.for("react.portal"):60106,a=o?Symbol.for("react.fragment"):60107,u=o?Symbol.for("react.strict_mode"):60108,c=o?Symbol.for("react.profiler"):60114,s=o?Symbol.for("react.provider"):60109,f=o?Symbol.for("react.context"):60110,d=o?Symbol.for("react.forward_ref"):60112,p=o?Symbol.for("react.suspense"):60113,m=o?Symbol.for("react.memo"):60115,h=o?Symbol.for("react.lazy"):60116,v="function"==typeof Symbol&&Symbol.iterator;function y(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var g={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},b={};function w(e,t,n){this.props=e,this.context=t,this.refs=b,this.updater=n||g}function x(){}function k(e,t,n){this.props=e,this.context=t,this.refs=b,this.updater=n||g}w.prototype.isReactComponent={},w.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(y(85));this.updater.enqueueSetState(this,e,t,"setState")},w.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},x.prototype=w.prototype;var E=k.prototype=new x;E.constructor=k,r(E,w.prototype),E.isPureReactComponent=!0;var T={current:null},S=Object.prototype.hasOwnProperty,C={key:!0,ref:!0,__self:!0,__source:!0};function _(e,t,n){var r,o={},l=null,a=null;if(null!=t)for(r in void 0!==t.ref&&(a=t.ref),void 0!==t.key&&(l=""+t.key),t)S.call(t,r)&&!C.hasOwnProperty(r)&&(o[r]=t[r]);var u=arguments.length-2;if(1===u)o.children=n;else if(1<u){for(var c=Array(u),s=0;s<u;s++)c[s]=arguments[s+2];o.children=c}if(e&&e.defaultProps)for(r in u=e.defaultProps)void 0===o[r]&&(o[r]=u[r]);return{$$typeof:i,type:e,key:l,ref:a,props:o,_owner:T.current}}function P(e){return"object"==typeof e&&null!==e&&e.$$typeof===i}var N=/\/+/g,O=[];function R(e,t,n,r){if(O.length){var o=O.pop();return o.result=e,o.keyPrefix=t,o.func=n,o.context=r,o.count=0,o}return{result:e,keyPrefix:t,func:n,context:r,count:0}}function M(e){e.result=null,e.keyPrefix=null,e.func=null,e.context=null,e.count=0,10>O.length&&O.push(e)}function z(e,t,n,r){var o=typeof e;"undefined"!==o&&"boolean"!==o||(e=null);var a=!1;if(null===e)a=!0;else switch(o){case"string":case"number":a=!0;break;case"object":switch(e.$$typeof){case i:case l:a=!0}}if(a)return n(r,e,""===t?"."+F(e,0):t),1;if(a=0,t=""===t?".":t+":",Array.isArray(e))for(var u=0;u<e.length;u++){var c=t+F(o=e[u],u);a+=z(o,c,n,r)}else if("function"==typeof(c=null===e||"object"!=typeof e?null:"function"==typeof(c=v&&e[v]||e["@@iterator"])?c:null))for(e=c.call(e),u=0;!(o=e.next()).done;)a+=z(o=o.value,c=t+F(o,u++),n,r);else if("object"===o)throw n=""+e,Error(y(31,"[object Object]"===n?"object with keys {"+Object.keys(e).join(", ")+"}":n,""));return a}function I(e,t,n){return null==e?0:z(e,"",t,n)}function F(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+(""+e).replace(/[=:]/g,(function(e){return t[e]}))}(e.key):t.toString(36)}function A(e,t){e.func.call(e.context,t,e.count++)}function L(e,t,n){var r=e.result,o=e.keyPrefix;e=e.func.call(e.context,t,e.count++),Array.isArray(e)?D(e,r,n,(function(e){return e})):null!=e&&(P(e)&&(e=function(e,t){return{$$typeof:i,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(e,o+(!e.key||t&&t.key===e.key?"":(""+e.key).replace(N,"$&/")+"/")+n)),r.push(e))}function D(e,t,n,r,o){var i="";null!=n&&(i=(""+n).replace(N,"$&/")+"/"),I(e,L,t=R(t,i,r,o)),M(t)}var j={current:null};function U(){var e=j.current;if(null===e)throw Error(y(321));return e}var $={ReactCurrentDispatcher:j,ReactCurrentBatchConfig:{suspense:null},ReactCurrentOwner:T,IsSomeRendererActing:{current:!1},assign:r};t.Children={map:function(e,t,n){if(null==e)return e;var r=[];return D(e,r,null,t,n),r},forEach:function(e,t,n){if(null==e)return e;I(e,A,t=R(null,null,t,n)),M(t)},count:function(e){return I(e,(function(){return null}),null)},toArray:function(e){var t=[];return D(e,t,null,(function(e){return e})),t},only:function(e){if(!P(e))throw Error(y(143));return e}},t.Component=w,t.Fragment=a,t.Profiler=c,t.PureComponent=k,t.StrictMode=u,t.Suspense=p,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=$,t.cloneElement=function(e,t,n){if(null==e)throw Error(y(267,e));var o=r({},e.props),l=e.key,a=e.ref,u=e._owner;if(null!=t){if(void 0!==t.ref&&(a=t.ref,u=T.current),void 0!==t.key&&(l=""+t.key),e.type&&e.type.defaultProps)var c=e.type.defaultProps;for(s in t)S.call(t,s)&&!C.hasOwnProperty(s)&&(o[s]=void 0===t[s]&&void 0!==c?c[s]:t[s])}var s=arguments.length-2;if(1===s)o.children=n;else if(1<s){c=Array(s);for(var f=0;f<s;f++)c[f]=arguments[f+2];o.children=c}return{$$typeof:i,type:e.type,key:l,ref:a,props:o,_owner:u}},t.createContext=function(e,t){return void 0===t&&(t=null),(e={$$typeof:f,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:s,_context:e},e.Consumer=e},t.createElement=_,t.createFactory=function(e){var t=_.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:d,render:e}},t.isValidElement=P,t.lazy=function(e){return{$$typeof:h,_ctor:e,_status:-1,_result:null}},t.memo=function(e,t){return{$$typeof:m,type:e,compare:void 0===t?null:t}},t.useCallback=function(e,t){return U().useCallback(e,t)},t.useContext=function(e,t){return U().useContext(e,t)},t.useDebugValue=function(){},t.useEffect=function(e,t){return U().useEffect(e,t)},t.useImperativeHandle=function(e,t,n){return U().useImperativeHandle(e,t,n)},t.useLayoutEffect=function(e,t){return U().useLayoutEffect(e,t)},t.useMemo=function(e,t){return U().useMemo(e,t)},t.useReducer=function(e,t,n){return U().useReducer(e,t,n)},t.useRef=function(e){return U().useRef(e)},t.useState=function(e){return U().useState(e)},t.version="16.14.0"},294:(e,t,n)=>{"use strict";e.exports=n(408)},53:(e,t)=>{"use strict";var n,r,o,i,l;if("undefined"==typeof window||"function"!=typeof MessageChannel){var a=null,u=null,c=function(){if(null!==a)try{var e=t.unstable_now();a(!0,e),a=null}catch(e){throw setTimeout(c,0),e}},s=Date.now();t.unstable_now=function(){return Date.now()-s},n=function(e){null!==a?setTimeout(n,0,e):(a=e,setTimeout(c,0))},r=function(e,t){u=setTimeout(e,t)},o=function(){clearTimeout(u)},i=function(){return!1},l=t.unstable_forceFrameRate=function(){}}else{var f=window.performance,d=window.Date,p=window.setTimeout,m=window.clearTimeout;if("undefined"!=typeof console){var h=window.cancelAnimationFrame;"function"!=typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://fb.me/react-polyfills"),"function"!=typeof h&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://fb.me/react-polyfills")}if("object"==typeof f&&"function"==typeof f.now)t.unstable_now=function(){return f.now()};else{var v=d.now();t.unstable_now=function(){return d.now()-v}}var y=!1,g=null,b=-1,w=5,x=0;i=function(){return t.unstable_now()>=x},l=function(){},t.unstable_forceFrameRate=function(e){0>e||125<e?console.error("forceFrameRate takes a positive int between 0 and 125, forcing framerates higher than 125 fps is not unsupported"):w=0<e?Math.floor(1e3/e):5};var k=new MessageChannel,E=k.port2;k.port1.onmessage=function(){if(null!==g){var e=t.unstable_now();x=e+w;try{g(!0,e)?E.postMessage(null):(y=!1,g=null)}catch(e){throw E.postMessage(null),e}}else y=!1},n=function(e){g=e,y||(y=!0,E.postMessage(null))},r=function(e,n){b=p((function(){e(t.unstable_now())}),n)},o=function(){m(b),b=-1}}function T(e,t){var n=e.length;e.push(t);e:for(;;){var r=n-1>>>1,o=e[r];if(!(void 0!==o&&0<_(o,t)))break e;e[r]=t,e[n]=o,n=r}}function S(e){return void 0===(e=e[0])?null:e}function C(e){var t=e[0];if(void 0!==t){var n=e.pop();if(n!==t){e[0]=n;e:for(var r=0,o=e.length;r<o;){var i=2*(r+1)-1,l=e[i],a=i+1,u=e[a];if(void 0!==l&&0>_(l,n))void 0!==u&&0>_(u,l)?(e[r]=u,e[a]=n,r=a):(e[r]=l,e[i]=n,r=i);else{if(!(void 0!==u&&0>_(u,n)))break e;e[r]=u,e[a]=n,r=a}}}return t}return null}function _(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var P=[],N=[],O=1,R=null,M=3,z=!1,I=!1,F=!1;function A(e){for(var t=S(N);null!==t;){if(null===t.callback)C(N);else{if(!(t.startTime<=e))break;C(N),t.sortIndex=t.expirationTime,T(P,t)}t=S(N)}}function L(e){if(F=!1,A(e),!I)if(null!==S(P))I=!0,n(D);else{var t=S(N);null!==t&&r(L,t.startTime-e)}}function D(e,n){I=!1,F&&(F=!1,o()),z=!0;var l=M;try{for(A(n),R=S(P);null!==R&&(!(R.expirationTime>n)||e&&!i());){var a=R.callback;if(null!==a){R.callback=null,M=R.priorityLevel;var u=a(R.expirationTime<=n);n=t.unstable_now(),"function"==typeof u?R.callback=u:R===S(P)&&C(P),A(n)}else C(P);R=S(P)}if(null!==R)var c=!0;else{var s=S(N);null!==s&&r(L,s.startTime-n),c=!1}return c}finally{R=null,M=l,z=!1}}function j(e){switch(e){case 1:return-1;case 2:return 250;case 5:return 1073741823;case 4:return 1e4;default:return 5e3}}var U=l;t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){I||z||(I=!0,n(D))},t.unstable_getCurrentPriorityLevel=function(){return M},t.unstable_getFirstCallbackNode=function(){return S(P)},t.unstable_next=function(e){switch(M){case 1:case 2:case 3:var t=3;break;default:t=M}var n=M;M=t;try{return e()}finally{M=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=U,t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=M;M=e;try{return t()}finally{M=n}},t.unstable_scheduleCallback=function(e,i,l){var a=t.unstable_now();if("object"==typeof l&&null!==l){var u=l.delay;u="number"==typeof u&&0<u?a+u:a,l="number"==typeof l.timeout?l.timeout:j(e)}else l=j(e),u=a;return e={id:O++,callback:i,priorityLevel:e,startTime:u,expirationTime:l=u+l,sortIndex:-1},u>a?(e.sortIndex=u,T(N,e),null===S(P)&&e===S(N)&&(F?o():F=!0,r(L,u-a))):(e.sortIndex=l,T(P,e),I||z||(I=!0,n(D))),e},t.unstable_shouldYield=function(){var e=t.unstable_now();A(e);var n=S(P);return n!==R&&null!==R&&null!==n&&null!==n.callback&&n.startTime<=e&&n.expirationTime<R.expirationTime||i()},t.unstable_wrapCallback=function(e){var t=M;return function(){var n=M;M=t;try{return e.apply(this,arguments)}finally{M=n}}}},840:(e,t,n)=>{"use strict";e.exports=n(53)},379:(e,t,n)=>{"use strict";var r,o=function(){var e={};return function(t){if(void 0===e[t]){var n=document.querySelector(t);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}e[t]=n}return e[t]}}(),i=[];function l(e){for(var t=-1,n=0;n<i.length;n++)if(i[n].identifier===e){t=n;break}return t}function a(e,t){for(var n={},r=[],o=0;o<e.length;o++){var a=e[o],u=t.base?a[0]+t.base:a[0],c=n[u]||0,s="".concat(u," ").concat(c);n[u]=c+1;var f=l(s),d={css:a[1],media:a[2],sourceMap:a[3]};-1!==f?(i[f].references++,i[f].updater(d)):i.push({identifier:s,updater:h(d,t),references:1}),r.push(s)}return r}function u(e){var t=document.createElement("style"),r=e.attributes||{};if(void 0===r.nonce){var i=n.nc;i&&(r.nonce=i)}if(Object.keys(r).forEach((function(e){t.setAttribute(e,r[e])})),"function"==typeof e.insert)e.insert(t);else{var l=o(e.insert||"head");if(!l)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");l.appendChild(t)}return t}var c,s=(c=[],function(e,t){return c[e]=t,c.filter(Boolean).join("\n")});function f(e,t,n,r){var o=n?"":r.media?"@media ".concat(r.media," {").concat(r.css,"}"):r.css;if(e.styleSheet)e.styleSheet.cssText=s(t,o);else{var i=document.createTextNode(o),l=e.childNodes;l[t]&&e.removeChild(l[t]),l.length?e.insertBefore(i,l[t]):e.appendChild(i)}}function d(e,t,n){var r=n.css,o=n.media,i=n.sourceMap;if(o?e.setAttribute("media",o):e.removeAttribute("media"),i&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),e.styleSheet)e.styleSheet.cssText=r;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(r))}}var p=null,m=0;function h(e,t){var n,r,o;if(t.singleton){var i=m++;n=p||(p=u(t)),r=f.bind(null,n,i,!1),o=f.bind(null,n,i,!0)}else n=u(t),r=d.bind(null,n,t),o=function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(n)};return r(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap)return;r(e=t)}else o()}}e.exports=function(e,t){(t=t||{}).singleton||"boolean"==typeof t.singleton||(t.singleton=(void 0===r&&(r=Boolean(window&&document&&document.all&&!window.atob)),r));var n=a(e=e||[],t);return function(e){if(e=e||[],"[object Array]"===Object.prototype.toString.call(e)){for(var r=0;r<n.length;r++){var o=l(n[r]);i[o].references--}for(var u=a(e,t),c=0;c<n.length;c++){var s=l(n[c]);0===i[s].references&&(i[s].updater(),i.splice(s,1))}n=u}}}}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var i=t[r]={id:r,exports:{}};return e[r](i,i.exports,n),i.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),(()=>{"use strict";var e=n(294),t=n(935);function r(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function o(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i=[],l=!0,a=!1;try{for(n=n.call(e);!(l=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);l=!0);}catch(e){a=!0,o=e}finally{try{l||null==n.return||n.return()}finally{if(a)throw o}}return i}}(e,t)||function(e,t){if(e){if("string"==typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}const i=function(){var t=o((0,e.useState)(),2),n=(t[0],t[1]),r=o((0,e.useState)(),2),i=(r[0],r[1]);return(0,e.useEffect)((function(){fetch("https://test-compendium01.geant.org/service-matrix",{referrerPolicy:"unsafe-url",headers:{"Access-Control-Allow-Origin":"*","Content-Type":"text/plain"}}).then((function(e){return console.log(e),e.ok?e.json():e.text().then((function(t){throw console.error("Failed to load datax: ".concat(t),e.status),new Error("The data could not be loaded, check the logs for details.")}))})).then((function(e){console.log("got response==>nrens"),console.log(e.nrens),console.log("got response==>service"),console.log(e.services),n(e.nrens),i(e.services)}))}),[]),e.createElement("div",null,e.createElement("h1",null,"Annual Report"))},l=function(){return e.createElement("div",null,e.createElement("h1",null,"Data Analysis"))};function a(e,t){return a=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},a(e,t)}function u(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,a(e,t)}var c=n(697),s=n.n(c);function f(){return f=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},f.apply(this,arguments)}function d(e){return"/"===e.charAt(0)}function p(e,t){for(var n=t,r=n+1,o=e.length;r<o;n+=1,r+=1)e[n]=e[r];e.pop()}function m(e,t){if(!e)throw new Error("Invariant failed")}function h(e){return"/"===e.charAt(0)?e:"/"+e}function v(e,t){return function(e,t){return 0===e.toLowerCase().indexOf(t.toLowerCase())&&-1!=="/?#".indexOf(e.charAt(t.length))}(e,t)?e.substr(t.length):e}function y(e){return"/"===e.charAt(e.length-1)?e.slice(0,-1):e}function g(e){var t=e.pathname,n=e.search,r=e.hash,o=t||"/";return n&&"?"!==n&&(o+="?"===n.charAt(0)?n:"?"+n),r&&"#"!==r&&(o+="#"===r.charAt(0)?r:"#"+r),o}function b(e,t,n,r){var o;"string"==typeof e?(o=function(e){var t=e||"/",n="",r="",o=t.indexOf("#");-1!==o&&(r=t.substr(o),t=t.substr(0,o));var i=t.indexOf("?");return-1!==i&&(n=t.substr(i),t=t.substr(0,i)),{pathname:t,search:"?"===n?"":n,hash:"#"===r?"":r}}(e),o.state=t):(void 0===(o=f({},e)).pathname&&(o.pathname=""),o.search?"?"!==o.search.charAt(0)&&(o.search="?"+o.search):o.search="",o.hash?"#"!==o.hash.charAt(0)&&(o.hash="#"+o.hash):o.hash="",void 0!==t&&void 0===o.state&&(o.state=t));try{o.pathname=decodeURI(o.pathname)}catch(e){throw e instanceof URIError?new URIError('Pathname "'+o.pathname+'" could not be decoded. This is likely caused by an invalid percent-encoding.'):e}return n&&(o.key=n),r?o.pathname?"/"!==o.pathname.charAt(0)&&(o.pathname=function(e,t){void 0===t&&(t="");var n,r=e&&e.split("/")||[],o=t&&t.split("/")||[],i=e&&d(e),l=t&&d(t),a=i||l;if(e&&d(e)?o=r:r.length&&(o.pop(),o=o.concat(r)),!o.length)return"/";if(o.length){var u=o[o.length-1];n="."===u||".."===u||""===u}else n=!1;for(var c=0,s=o.length;s>=0;s--){var f=o[s];"."===f?p(o,s):".."===f?(p(o,s),c++):c&&(p(o,s),c--)}if(!a)for(;c--;c)o.unshift("..");!a||""===o[0]||o[0]&&d(o[0])||o.unshift("");var m=o.join("/");return n&&"/"!==m.substr(-1)&&(m+="/"),m}(o.pathname,r.pathname)):o.pathname=r.pathname:o.pathname||(o.pathname="/"),o}function w(){var e=null,t=[];return{setPrompt:function(t){return e=t,function(){e===t&&(e=null)}},confirmTransitionTo:function(t,n,r,o){if(null!=e){var i="function"==typeof e?e(t,n):e;"string"==typeof i?"function"==typeof r?r(i,o):o(!0):o(!1!==i)}else o(!0)},appendListener:function(e){var n=!0;function r(){n&&e.apply(void 0,arguments)}return t.push(r),function(){n=!1,t=t.filter((function(e){return e!==r}))}},notifyListeners:function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];t.forEach((function(e){return e.apply(void 0,n)}))}}}var x=!("undefined"==typeof window||!window.document||!window.document.createElement);function k(e,t){t(window.confirm(e))}var E="popstate",T="hashchange";function S(){try{return window.history.state||{}}catch(e){return{}}}function C(e){void 0===e&&(e={}),x||m(!1);var t,n=window.history,r=(-1===(t=window.navigator.userAgent).indexOf("Android 2.")&&-1===t.indexOf("Android 4.0")||-1===t.indexOf("Mobile Safari")||-1!==t.indexOf("Chrome")||-1!==t.indexOf("Windows Phone"))&&window.history&&"pushState"in window.history,o=!(-1===window.navigator.userAgent.indexOf("Trident")),i=e,l=i.forceRefresh,a=void 0!==l&&l,u=i.getUserConfirmation,c=void 0===u?k:u,s=i.keyLength,d=void 0===s?6:s,p=e.basename?y(h(e.basename)):"";function C(e){var t=e||{},n=t.key,r=t.state,o=window.location,i=o.pathname+o.search+o.hash;return p&&(i=v(i,p)),b(i,r,n)}function _(){return Math.random().toString(36).substr(2,d)}var P=w();function N(e){f($,e),$.length=n.length,P.notifyListeners($.location,$.action)}function O(e){(function(e){return void 0===e.state&&-1===navigator.userAgent.indexOf("CriOS")})(e)||z(C(e.state))}function R(){z(C(S()))}var M=!1;function z(e){M?(M=!1,N()):P.confirmTransitionTo(e,"POP",c,(function(t){t?N({action:"POP",location:e}):function(e){var t=$.location,n=F.indexOf(t.key);-1===n&&(n=0);var r=F.indexOf(e.key);-1===r&&(r=0);var o=n-r;o&&(M=!0,L(o))}(e)}))}var I=C(S()),F=[I.key];function A(e){return p+g(e)}function L(e){n.go(e)}var D=0;function j(e){1===(D+=e)&&1===e?(window.addEventListener(E,O),o&&window.addEventListener(T,R)):0===D&&(window.removeEventListener(E,O),o&&window.removeEventListener(T,R))}var U=!1,$={length:n.length,action:"POP",location:I,createHref:A,push:function(e,t){var o="PUSH",i=b(e,t,_(),$.location);P.confirmTransitionTo(i,o,c,(function(e){if(e){var t=A(i),l=i.key,u=i.state;if(r)if(n.pushState({key:l,state:u},null,t),a)window.location.href=t;else{var c=F.indexOf($.location.key),s=F.slice(0,c+1);s.push(i.key),F=s,N({action:o,location:i})}else window.location.href=t}}))},replace:function(e,t){var o="REPLACE",i=b(e,t,_(),$.location);P.confirmTransitionTo(i,o,c,(function(e){if(e){var t=A(i),l=i.key,u=i.state;if(r)if(n.replaceState({key:l,state:u},null,t),a)window.location.replace(t);else{var c=F.indexOf($.location.key);-1!==c&&(F[c]=i.key),N({action:o,location:i})}else window.location.replace(t)}}))},go:L,goBack:function(){L(-1)},goForward:function(){L(1)},block:function(e){void 0===e&&(e=!1);var t=P.setPrompt(e);return U||(j(1),U=!0),function(){return U&&(U=!1,j(-1)),t()}},listen:function(e){var t=P.appendListener(e);return j(1),function(){j(-1),t()}}};return $}var _=n(658),P=n.n(_);function N(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}n(864),n(679);var O=1073741823,R="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:void 0!==n.g?n.g:{};function M(e){var t=[];return{on:function(e){t.push(e)},off:function(e){t=t.filter((function(t){return t!==e}))},get:function(){return e},set:function(n,r){e=n,t.forEach((function(t){return t(e,r)}))}}}var z=e.createContext||function(t,n){var r,o,i,l="__create-react-context-"+((R[i="__global_unique_id__"]=(R[i]||0)+1)+"__"),a=function(e){function t(){for(var t,n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return(t=e.call.apply(e,[this].concat(r))||this).emitter=M(t.props.value),t}u(t,e);var r=t.prototype;return r.getChildContext=function(){var e;return(e={})[l]=this.emitter,e},r.componentWillReceiveProps=function(e){if(this.props.value!==e.value){var t,r=this.props.value,o=e.value;((i=r)===(l=o)?0!==i||1/i==1/l:i!=i&&l!=l)?t=0:(t="function"==typeof n?n(r,o):O,0!=(t|=0)&&this.emitter.set(e.value,t))}var i,l},r.render=function(){return this.props.children},t}(e.Component);a.childContextTypes=((r={})[l]=s().object.isRequired,r);var c=function(e){function n(){for(var t,n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return(t=e.call.apply(e,[this].concat(r))||this).observedBits=void 0,t.state={value:t.getValue()},t.onUpdate=function(e,n){0!=((0|t.observedBits)&n)&&t.setState({value:t.getValue()})},t}u(n,e);var r=n.prototype;return r.componentWillReceiveProps=function(e){var t=e.observedBits;this.observedBits=null==t?O:t},r.componentDidMount=function(){this.context[l]&&this.context[l].on(this.onUpdate);var e=this.props.observedBits;this.observedBits=null==e?O:e},r.componentWillUnmount=function(){this.context[l]&&this.context[l].off(this.onUpdate)},r.getValue=function(){return this.context[l]?this.context[l].get():t},r.render=function(){return(e=this.props.children,Array.isArray(e)?e[0]:e)(this.state.value);var e},n}(e.Component);return c.contextTypes=((o={})[l]=s().object,o),{Provider:a,Consumer:c}},I=function(e){var t=z();return t.displayName=e,t},F=I("Router-History"),A=I("Router"),L=function(t){function n(e){var n;return(n=t.call(this,e)||this).state={location:e.history.location},n._isMounted=!1,n._pendingLocation=null,e.staticContext||(n.unlisten=e.history.listen((function(e){n._pendingLocation=e}))),n}u(n,t),n.computeRootMatch=function(e){return{path:"/",url:"/",params:{},isExact:"/"===e}};var r=n.prototype;return r.componentDidMount=function(){var e=this;this._isMounted=!0,this.unlisten&&this.unlisten(),this.props.staticContext||(this.unlisten=this.props.history.listen((function(t){e._isMounted&&e.setState({location:t})}))),this._pendingLocation&&this.setState({location:this._pendingLocation})},r.componentWillUnmount=function(){this.unlisten&&(this.unlisten(),this._isMounted=!1,this._pendingLocation=null)},r.render=function(){return e.createElement(A.Provider,{value:{history:this.props.history,location:this.state.location,match:n.computeRootMatch(this.state.location.pathname),staticContext:this.props.staticContext}},e.createElement(F.Provider,{children:this.props.children||null,value:this.props.history}))},n}(e.Component);e.Component,e.Component;var D={},j=0;function U(e,t){void 0===t&&(t={}),("string"==typeof t||Array.isArray(t))&&(t={path:t});var n=t,r=n.path,o=n.exact,i=void 0!==o&&o,l=n.strict,a=void 0!==l&&l,u=n.sensitive,c=void 0!==u&&u;return[].concat(r).reduce((function(t,n){if(!n&&""!==n)return null;if(t)return t;var r=function(e,t){var n=""+t.end+t.strict+t.sensitive,r=D[n]||(D[n]={});if(r[e])return r[e];var o=[],i={regexp:P()(e,o,t),keys:o};return j<1e4&&(r[e]=i,j++),i}(n,{end:i,strict:a,sensitive:c}),o=r.regexp,l=r.keys,u=o.exec(e);if(!u)return null;var s=u[0],f=u.slice(1),d=e===s;return i&&!d?null:{path:n,url:"/"===n&&""===s?"/":s,isExact:d,params:l.reduce((function(e,t,n){return e[t.name]=f[n],e}),{})}}),null)}var $=function(t){function n(){return t.apply(this,arguments)||this}return u(n,t),n.prototype.render=function(){var t=this;return e.createElement(A.Consumer,null,(function(n){n||m(!1);var r=t.props.location||n.location,o=f({},n,{location:r,match:t.props.computedMatch?t.props.computedMatch:t.props.path?U(r.pathname,t.props):n.match}),i=t.props,l=i.children,a=i.component,u=i.render;return Array.isArray(l)&&function(t){return 0===e.Children.count(t)}(l)&&(l=null),e.createElement(A.Provider,{value:o},o.match?l?"function"==typeof l?l(o):l:a?e.createElement(a,o):u?u(o):null:"function"==typeof l?l(o):null)}))},n}(e.Component);e.Component;var V=function(t){function n(){return t.apply(this,arguments)||this}return u(n,t),n.prototype.render=function(){var t=this;return e.createElement(A.Consumer,null,(function(n){n||m(!1);var r,o,i=t.props.location||n.location;return e.Children.forEach(t.props.children,(function(t){if(null==o&&e.isValidElement(t)){r=t;var l=t.props.path||t.props.from;o=l?U(i.pathname,f({},t.props,{path:l})):n.match}})),o?e.cloneElement(r,{location:i,computedMatch:o}):null}))},n}(e.Component);e.useContext;var W=function(t){function n(){for(var e,n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return(e=t.call.apply(t,[this].concat(r))||this).history=C(e.props),e}return u(n,t),n.prototype.render=function(){return e.createElement(L,{history:this.history,children:this.props.children})},n}(e.Component);e.Component;var B=function(e,t){return"function"==typeof e?e(t):e},Q=function(e,t){return"string"==typeof e?b(e,null,null,t):e},H=function(e){return e},K=e.forwardRef;void 0===K&&(K=H);var q=K((function(t,n){var r=t.innerRef,o=t.navigate,i=t.onClick,l=N(t,["innerRef","navigate","onClick"]),a=l.target,u=f({},l,{onClick:function(e){try{i&&i(e)}catch(t){throw e.preventDefault(),t}e.defaultPrevented||0!==e.button||a&&"_self"!==a||function(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}(e)||(e.preventDefault(),o())}});return u.ref=H!==K&&n||r,e.createElement("a",u)})),Y=K((function(t,n){var r=t.component,o=void 0===r?q:r,i=t.replace,l=t.to,a=t.innerRef,u=N(t,["component","replace","to","innerRef"]);return e.createElement(A.Consumer,null,(function(t){t||m(!1);var r=t.history,c=Q(B(l,t.location),t.location),s=c?r.createHref(c):"",d=f({},u,{href:s,navigate:function(){var e=B(l,t.location),n=g(t.location)===g(Q(e));(i||n?r.replace:r.push)(e)}});return H!==K?d.ref=n||a:d.innerRef=a,e.createElement(o,d)}))})),X=function(e){return e},G=e.forwardRef;void 0===G&&(G=X),G((function(t,n){var r=t["aria-current"],o=void 0===r?"page":r,i=t.activeClassName,l=void 0===i?"active":i,a=t.activeStyle,u=t.className,c=t.exact,s=t.isActive,d=t.location,p=t.sensitive,h=t.strict,v=t.style,y=t.to,g=t.innerRef,b=N(t,["aria-current","activeClassName","activeStyle","className","exact","isActive","location","sensitive","strict","style","to","innerRef"]);return e.createElement(A.Consumer,null,(function(t){t||m(!1);var r=d||t.location,i=Q(B(y,r),r),w=i.pathname,x=w&&w.replace(/([.+*?=^!:${}()[\]|/\\])/g,"\\$1"),k=x?U(r.pathname,{path:x,exact:c,sensitive:p,strict:h}):null,E=!!(s?s(k,r):k),T="function"==typeof u?u(E):u,S="function"==typeof v?v(E):v;E&&(T=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return t.filter((function(e){return e})).join(" ")}(T,l),S=f({},S,a));var C=f({"aria-current":E&&o||null,className:T,style:S,to:i},b);return X!==G?C.ref=n||g:C.innerRef=g,e.createElement(Y,C)}))}));const Z=function(){var t={color:"white"};return e.createElement("nav",{className:"header-naviagtion"},e.createElement("ul",{className:"nav-links"},e.createElement("li",null,e.createElement(Y,{style:t,to:"/about"},"About")),e.createElement("li",null,e.createElement(Y,{style:t,to:"/report"},"Annual Report")),e.createElement("li",null,e.createElement(Y,{style:t,to:"/analysis"},"Data Analysis"))))},J=function(){return e.createElement("div",null,e.createElement("h1",null,"About Page"))},ee=function(){return e.createElement(W,null,e.createElement(Z,null),e.createElement(V,null,e.createElement($,{exact:!0,path:"/about",component:J}),e.createElement($,{exact:!0,path:"/analysis",component:l}),e.createElement($,{exact:!0,path:"/report",component:i}),e.createElement($,{path:"*",component:J})))};var te=n(379),ne=n.n(te),re=n(99);ne()(re.Z,{insert:"head",singleton:!1}),re.Z.locals,t.render(e.createElement(ee,null),document.getElementById("root"))})()})(); \ No newline at end of file diff --git a/compendium_v2/static/images/compendium_header.png b/compendium_v2/static/images/compendium_header.png new file mode 100644 index 0000000000000000000000000000000000000000..467f3f4aa589a325002779b94f8f460c2f07dc0d Binary files /dev/null and b/compendium_v2/static/images/compendium_header.png differ diff --git a/compendium_v2/static/index.html b/compendium_v2/static/index.html new file mode 100644 index 0000000000000000000000000000000000000000..3b2df07a811eb6950c6db07152ac9514b0f5e4b3 --- /dev/null +++ b/compendium_v2/static/index.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="utf-8"/> +</head> +<body> + <div id="root"></div> + <script src="bundle.js"></script> +</body> +</html> \ No newline at end of file diff --git a/compendium_v2/templates/index.html b/compendium_v2/templates/index.html new file mode 100644 index 0000000000000000000000000000000000000000..66bd15d4ed1988750f3edf7a5d642ef808237ee2 --- /dev/null +++ b/compendium_v2/templates/index.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="utf-8"/> +</head> +<body> + <div id="root"></div> + <script src="static/bundle.js"></script> +</body> +</html> \ No newline at end of file diff --git a/compendium_v2/templating/__init__.py b/compendium_v2/templating/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/config-example.json b/config-example.json new file mode 100644 index 0000000000000000000000000000000000000000..0f1c1dd6186dedaf4a10eeb349472597c79d0c1d --- /dev/null +++ b/config-example.json @@ -0,0 +1,4 @@ +{ + "str-param": "some string", + "int-param": -1234 +} diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..d0c3cbf1020d5c292abdedf27627c6abe25e2293 --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,20 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +SOURCEDIR = source +BUILDDIR = build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/docs/source/api.rst b/docs/source/api.rst new file mode 100644 index 0000000000000000000000000000000000000000..1db2969abd99b080c252bb06be8b75e5b7572c82 --- /dev/null +++ b/docs/source/api.rst @@ -0,0 +1,22 @@ +.. api intro + +API Protocol +=============== + +This module implements a Flask-based webservice which +communicates with clients over HTTP. +Responses to valid requests are returned as JSON messages. +The server will therefore return an error unless +`application/json` is in the `Accept` request header field. + +HTTP communication and JSON grammar details are +beyond the scope of this document. +Please refer to [RFC 2616](https://tools.ietf.org/html/rfc2616) +and www.json.org for more details. + +.. contents:: :local: + +.. automodule:: compendium_v2.routes.default + +.. automodule:: compendium_v2.routes.api + diff --git a/docs/source/conf.py b/docs/source/conf.py new file mode 100644 index 0000000000000000000000000000000000000000..8752c56e6fc18858c1fa5d831c04e2f460abc95d --- /dev/null +++ b/docs/source/conf.py @@ -0,0 +1,101 @@ +# Configuration file for the Sphinx documentation builder. +# +# This file only contains a selection of the most common options. For a full +# list see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html + +# -- Path setup -------------------------------------------------------------- + +# If extensions (or modules to document with autodoc) are in another directory, +# add these directories to sys.path here. If the directory is relative to the +# documentation root, use os.path.abspath to make it absolute, like shown here. +# +# import os +# import sys +# sys.path.insert(0, os.path.abspath('.')) + +from importlib import import_module +from docutils.parsers.rst import Directive +from docutils import nodes +from sphinx import addnodes +import json +import os +import sys + +sys.path.insert(0, os.path.abspath( + os.path.join( + os.path.dirname(__file__), + '..', '..', 'compendium_v2'))) + + +class RenderAsJSON(Directive): + # cf. https://stackoverflow.com/a/59883833 + + required_arguments = 1 + + def run(self): + module_path, member_name = self.arguments[0].rsplit('.', 1) + + member_data = getattr(import_module(module_path), member_name) + code = json.dumps(member_data, indent=2) + + literal = nodes.literal_block(code, code) + literal['language'] = 'json' + + return [ + addnodes.desc_name(text=member_name), + addnodes.desc_content('', literal) + ] + + +def setup(app): + app.add_directive('asjson', RenderAsJSON) + + +# -- Project information ----------------------------------------------------- + +# TODO: give this a better project name +project = 'compendium-v2' +copyright = '2022, GÉANT Vereniging' +author = 'swd@geant.org' + +# The full version, including alpha/beta/rc tags +release = '0.0' + + +# -- General configuration --------------------------------------------------- + +# Add any Sphinx extension module names here, as strings. They can be +# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom +# ones. +extensions = [ + 'sphinx_rtd_theme', + 'sphinx.ext.autodoc', + 'sphinx.ext.coverage' +] + +# Add any paths that contain templates here, relative to this directory. +templates_path = ['_templates'] + +# List of patterns, relative to source directory, that match files and +# directories to ignore when looking for source files. +# This pattern also affects html_static_path and html_extra_path. +exclude_patterns = [] + + +# -- Options for HTML output ------------------------------------------------- + +# The theme to use for HTML and HTML Help pages. See the documentation for +# a list of builtin themes. +# +html_theme = 'sphinx_rtd_theme' + +# Add any paths that contain custom static files (such as style sheets) here, +# relative to this directory. They are copied after the builtin static files, +# so a file named "default.css" will overwrite the builtin "default.css". +html_static_path = ['_static'] + +# Both the class’ and the __init__ method’s docstring +# are concatenated and inserted. +autoclass_content = "both" +autodoc_typehints = "none" diff --git a/docs/source/index.rst b/docs/source/index.rst new file mode 100644 index 0000000000000000000000000000000000000000..696d5d7b30947976e10e150bb74998dc7aab9198 --- /dev/null +++ b/docs/source/index.rst @@ -0,0 +1,12 @@ +compendium_v2 +======================================== + +This project is a Flask-based webservice serving json-based data, and +a React web application that consumes and renders the json data. + + +.. toctree:: + :maxdepth: 2 + :caption: Contents: + + api diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..9bbdbde56cfcbc52b18207bdb1e13424add1ef55 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,8 @@ +jsonschema +flask +flask-cors + +pytest +jsonschema +sphinx +sphinx-rtd-theme diff --git a/setup.py b/setup.py new file mode 100644 index 0000000000000000000000000000000000000000..52d5641a5f17ed4e934714b8a734bb738a1653c3 --- /dev/null +++ b/setup.py @@ -0,0 +1,18 @@ +from setuptools import setup, find_packages + +setup( + name='compendium-v2', + version="0.1", + author='GEANT', + author_email='swd@geant.org', + description='Flask and React project for displaying ' + 'Compendium related reports and survey', + url=('https://gitlab.geant.net/live-projects/compendium-v2'), + packages=find_packages(), + install_requires=[ + 'jsonschema', + 'flask', + 'flask-cors' + ], + include_package_data=True, +) diff --git a/test/conftest.py b/test/conftest.py new file mode 100644 index 0000000000000000000000000000000000000000..34cc6b226cbdc98bdbf8d5d08b69be4c246c6797 --- /dev/null +++ b/test/conftest.py @@ -0,0 +1,26 @@ +import json +import os +import tempfile + +import pytest + +import compendium_v2 + + +@pytest.fixture +def data_config_filename(): + test_config_data = { + 'str-param': 'test data string', + 'int-param': -47 + } + with tempfile.NamedTemporaryFile() as f: + f.write(json.dumps(test_config_data).encode('utf-8')) + f.flush() + yield f.name + + +@pytest.fixture +def client(data_config_filename): + os.environ['SETTINGS_FILENAME'] = data_config_filename + with compendium_v2.create_app().test_client() as c: + yield c diff --git a/test/errors.log b/test/errors.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/test/info.log b/test/info.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/test/test_routes.py b/test/test_routes.py new file mode 100644 index 0000000000000000000000000000000000000000..e2445973ab1963d09e38cf3310f757fe3bbf2408 --- /dev/null +++ b/test/test_routes.py @@ -0,0 +1,36 @@ +import json +import jsonschema +import pytest + +from compendium_v2.routes.default import VERSION_SCHEMA +from compendium_v2.routes.api import THING_LIST_SCHEMA + + +@pytest.mark.parametrize( + 'endpoint', + ['version', 'api/things']) +def test_bad_accept(endpoint, client): + rv = client.post( + endpoint, + headers={'Accept': ['text/html']}) + assert rv.status_code == 406 + + +def test_version_request(client): + + rv = client.post( + 'version', + headers={'Accept': ['application/json']}) + assert rv.status_code == 200 + result = json.loads(rv.data.decode('utf-8')) + jsonschema.validate(result, VERSION_SCHEMA) + + +def test_things(client): + + rv = client.post( + 'api/things', + headers={'Accept': ['application/json']}) + assert rv.status_code == 200 + result = json.loads(rv.data.decode('utf-8')) + jsonschema.validate(result, THING_LIST_SCHEMA) diff --git a/test/test_service_matrix.py b/test/test_service_matrix.py new file mode 100644 index 0000000000000000000000000000000000000000..ac4297bc8861ae8aeafad794fc324885602b3b43 --- /dev/null +++ b/test/test_service_matrix.py @@ -0,0 +1,23 @@ +import json +import jsonschema +import pytest +from compendium_v2.routes.service_matrix import SERVICE_MATRIX_SCHEMA + + +@pytest.mark.parametrize( + 'endpoint', + ['service-matrix']) +def test_bad_accept(endpoint, client): + rv = client.get( + endpoint, + headers={'Accept': ['text/html']}) + assert rv.status_code == 406 + + +def test_service_matrix(client): + rv = client.get( + 'service-matrix', + headers={'Accept': ['application/json']}) + assert rv.status_code == 200 + result = json.loads(rv.data.decode('utf-8')) + jsonschema.validate(result, SERVICE_MATRIX_SCHEMA) diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000000000000000000000000000000000000..55092243affc1ddb6cabb1a6f4c6c10be134b0df --- /dev/null +++ b/tox.ini @@ -0,0 +1,22 @@ +[tox] +envlist = py39 + + +[flake8] +exclude = ./.tox,./webapp + +[testenv] +deps = + coverage + flake8 + -r requirements.txt + +commands = + coverage erase + coverage run --source compendium_v2 -m pytest {posargs} + coverage xml + coverage html + coverage report --fail-under 85 + flake8 + sphinx-build -M html docs/source docs/build + diff --git a/webapp/.babelrc b/webapp/.babelrc new file mode 100644 index 0000000000000000000000000000000000000000..fe4f02a3a07006af1fc9a5353de7fde99383a5b9 --- /dev/null +++ b/webapp/.babelrc @@ -0,0 +1,16 @@ +{ + "presets": [ + "@babel/preset-env", + "@babel/preset-react", + "@babel/preset-typescript" + ], + "plugins": [ + [ + "@babel/plugin-transform-runtime", + { + "regenerator": true + } + ], + "@babel/plugin-proposal-class-properties" + ] +} diff --git a/webapp/.eslintignore b/webapp/.eslintignore new file mode 100644 index 0000000000000000000000000000000000000000..46dbe5f594c22f10ede92d51c145b3421d890ba7 --- /dev/null +++ b/webapp/.eslintignore @@ -0,0 +1,2 @@ +**/*.css +**/*.scss diff --git a/webapp/.eslintrc.json b/webapp/.eslintrc.json new file mode 100644 index 0000000000000000000000000000000000000000..a650402f4d9feefefc4df71c6eae1f3f3dcd8cde --- /dev/null +++ b/webapp/.eslintrc.json @@ -0,0 +1,29 @@ +{ + "parser": "@typescript-eslint/parser", + "parserOptions": { + "ecmaVersion": 2018, + "sourceType": "module" + }, + "plugins": [ + "@typescript-eslint", + "react-hooks" + ], + "extends": [ + "plugin:react/recommended", + "plugin:@typescript-eslint/recommended" + ], + "rules": { + "react-hooks/rules-of-hooks": "error", + "react-hooks/exhaustive-deps": "warn", + "react/prop-types": "off", + "@typescript-eslint/no-unused-vars": [ + "warn", { "argsIgnorePattern": "^_" } + ] + }, + "settings": { + "react": { + "pragma": "React", + "version": "detect" + } + } + } \ No newline at end of file diff --git a/webapp/README.md b/webapp/README.md new file mode 100644 index 0000000000000000000000000000000000000000..8d2ed7c388b674999b7cc344cb30534c074efc4b --- /dev/null +++ b/webapp/README.md @@ -0,0 +1,29 @@ +# Working with the Web App + +## development environment + +From this folder, run: + +```bash +$ npm init +``` + +To run the webpack development server: + +```bash +$ npm run start +``` + +Note that you should run the Flask application separately +and append `?test=1` to the dev url that launches in the browser. + +## Releasing + +To build a new bundle, run: + +```bash +$ npm run build +``` + +This will build the new bundle and deploy it to +`compendium_v2/static/*`. This should be committed. diff --git a/webapp/package-lock.json b/webapp/package-lock.json new file mode 100644 index 0000000000000000000000000000000000000000..8c0b84cf571b24bf4da26327ecd6bba339f7d116 --- /dev/null +++ b/webapp/package-lock.json @@ -0,0 +1,30397 @@ +{ + "name": "compendium-v2", + "version": "0.0.1", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "compendium-v2", + "version": "0.0.1", + "license": "ISC", + "dependencies": { + "@types/react-router-dom": "^5.3.3", + "bootstrap": "^4.6.0", + "chart.js": "^3.9.1", + "file-loader": "^6.2.0", + "install": "^0.13.0", + "npm": "^7.6.3", + "react-bootstrap": "^2.0.2", + "react-chartjs-2": "^4.3.1", + "react-router-dom": "^5.2.1" + }, + "devDependencies": { + "@babel/core": "^7.13.10", + "@babel/plugin-transform-runtime": "^7.13.10", + "@babel/preset-env": "^7.13.10", + "@babel/preset-react": "^7.16.0", + "@babel/preset-typescript": "^7.13.0", + "@babel/runtime": "^7.13.10", + "@types/fork-ts-checker-webpack-plugin": "^0.4.5", + "@types/react": "^17.0.37", + "@types/react-dom": "^17.0.18", + "@types/webpack": "^4.41.26", + "@types/webpack-dev-server": "^3.11.2", + "@typescript-eslint/eslint-plugin": "^4.17.0", + "@typescript-eslint/parser": "^4.17.0", + "babel-loader": "^8.2.2", + "babel-plugin-transform-class-properties": "^6.24.1", + "css-loader": "^5.1.2", + "date-fns": "^2.26.0", + "eslint": "^7.22.0", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0", + "file-loader": "^6.2.0", + "fork-ts-checker-webpack-plugin": "^6.1.1", + "image-webpack-loader": "^8.1.0", + "sass": "^1.32.8", + "sass-loader": "^11.0.1", + "style-loader": "^2.0.0", + "ts-node": "^9.1.1", + "typescript": "^4.2.3", + "url-loader": "^4.1.1", + "webpack": "^5.25.0", + "webpack-cli": "^4.5.0", + "webpack-dev-server": "^3.11.2" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz", + "integrity": "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.4.tgz", + "integrity": "sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", + "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.16.0", + "@babel/generator": "^7.16.0", + "@babel/helper-compilation-targets": "^7.16.0", + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helpers": "^7.16.0", + "@babel/parser": "^7.16.0", + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.0.tgz", + "integrity": "sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz", + "integrity": "sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.0.tgz", + "integrity": "sha512-9KuleLT0e77wFUku6TUkqZzCEymBdtuQQ27MhEKzf9UOOJu3cYj98kyaDAzxpC7lV6DGiZFuC8XqDsq8/Kl6aQ==", + "dev": true, + "dependencies": { + "@babel/helper-explode-assignable-expression": "^7.16.0", + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz", + "integrity": "sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.16.0", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.17.5", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.0.tgz", + "integrity": "sha512-XLwWvqEaq19zFlF5PTgOod4bUA+XbkR4WLQBct1bkzmxJGB0ZEJaoKF4c8cgH9oBtCDuYJ8BP5NB9uFiEgO5QA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-member-expression-to-functions": "^7.16.0", + "@babel/helper-optimise-call-expression": "^7.16.0", + "@babel/helper-replace-supers": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.0.tgz", + "integrity": "sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "regexpu-core": "^4.7.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.0.tgz", + "integrity": "sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0-0" + } + }, + "node_modules/@babel/helper-explode-assignable-expression": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.0.tgz", + "integrity": "sha512-Hk2SLxC9ZbcOhLpg/yMznzJ11W++lg5GMbxt1ev6TXUiJB0N42KPC+7w8a+eWGuqDnUYuwStJoZHM7RgmIOaGQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz", + "integrity": "sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog==", + "dev": true, + "dependencies": { + "@babel/helper-get-function-arity": "^7.16.0", + "@babel/template": "^7.16.0", + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-get-function-arity": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz", + "integrity": "sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz", + "integrity": "sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.0.tgz", + "integrity": "sha512-bsjlBFPuWT6IWhl28EdrQ+gTvSvj5tqVP5Xeftp07SEuz5pLnsXZuDkDD3Rfcxy0IsHmbZ+7B2/9SHzxO0T+sQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz", + "integrity": "sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.0.tgz", + "integrity": "sha512-My4cr9ATcaBbmaEa8M0dZNA74cfI6gitvUAskgDtAFmAqyFKDSHQo5YstxPbN+lzHl2D9l/YOEFqb2mtUh4gfA==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.16.0", + "@babel/helper-replace-supers": "^7.16.0", + "@babel/helper-simple-access": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0", + "@babel/helper-validator-identifier": "^7.15.7", + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz", + "integrity": "sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", + "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.4.tgz", + "integrity": "sha512-vGERmmhR+s7eH5Y/cp8PCVzj4XEjerq8jooMfxFdA5xVtAk9Sh4AQsrWgiErUEBjtGrBtOFKDUcWQFW4/dFwMA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-wrap-function": "^7.16.0", + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.0.tgz", + "integrity": "sha512-TQxuQfSCdoha7cpRNJvfaYxxxzmbxXw/+6cS7V02eeDYyhxderSoMVALvwupA54/pZcOTtVeJ0xccp1nGWladA==", + "dev": true, + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.16.0", + "@babel/helper-optimise-call-expression": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz", + "integrity": "sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz", + "integrity": "sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz", + "integrity": "sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.15.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz", + "integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", + "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.0.tgz", + "integrity": "sha512-VVMGzYY3vkWgCJML+qVLvGIam902mJW0FvT7Avj1zEe0Gn7D93aWdLblYARTxEw+6DhZmtzhBM2zv0ekE5zg1g==", + "dev": true, + "dependencies": { + "@babel/helper-function-name": "^7.16.0", + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.3.tgz", + "integrity": "sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w==", + "dev": true, + "dependencies": { + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.3", + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz", + "integrity": "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.15.7", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.4.tgz", + "integrity": "sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.16.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2.tgz", + "integrity": "sha512-h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0.tgz", + "integrity": "sha512-4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.4.tgz", + "integrity": "sha512-/CUekqaAaZCQHleSK/9HajvcD/zdnJiKRiuUFq8ITE+0HsPzquf53cpFiqAwl/UfmJbR6n5uGPQSPdrmKOvHHg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.16.4", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.0.tgz", + "integrity": "sha512-mCF3HcuZSY9Fcx56Lbn+CGdT44ioBMMvjNVldpKtj8tpniETdLjnxdHI1+sDWXIM1nNt+EanJOZ3IG9lzVjs7A==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-static-block": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.0.tgz", + "integrity": "sha512-mAy3sdcY9sKAkf3lQbDiv3olOfiLqI51c9DR9b19uMoR2Z6r5pmGl7dfNFqEvqOyqbf1ta4lknK4gc5PJn3mfA==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-proposal-dynamic-import": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.0.tgz", + "integrity": "sha512-QGSA6ExWk95jFQgwz5GQ2Dr95cf7eI7TKutIXXTb7B1gCLTCz5hTjFTQGfLFBBiC5WSNi7udNwWsqbbMh1c4yQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-export-namespace-from": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.0.tgz", + "integrity": "sha512-CjI4nxM/D+5wCnhD11MHB1AwRSAYeDT+h8gCdcVJZ/OK7+wRzFsf7PFPWVpVpNRkHMmMkQWAHpTq+15IXQ1diA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-json-strings": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.0.tgz", + "integrity": "sha512-kouIPuiv8mSi5JkEhzApg5Gn6hFyKPnlkO0a9YSzqRurH8wYzSlf6RJdzluAsbqecdW5pBvDJDfyDIUR/vLxvg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.0.tgz", + "integrity": "sha512-pbW0fE30sVTYXXm9lpVQQ/Vc+iTeQKiXlaNRZPPN2A2VdlWyAtsUrsQ3xydSlDW00TFMK7a8m3cDTkBF5WnV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.0.tgz", + "integrity": "sha512-3bnHA8CAFm7cG93v8loghDYyQ8r97Qydf63BeYiGgYbjKKB/XP53W15wfRC7dvKfoiJ34f6Rbyyx2btExc8XsQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.0.tgz", + "integrity": "sha512-FAhE2I6mjispy+vwwd6xWPyEx3NYFS13pikDBWUAFGZvq6POGs5eNchw8+1CYoEgBl9n11I3NkzD7ghn25PQ9Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.0.tgz", + "integrity": "sha512-LU/+jp89efe5HuWJLmMmFG0+xbz+I2rSI7iLc1AlaeSMDMOGzWlc5yJrMN1d04osXN4sSfpo4O+azkBNBes0jg==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.16.0", + "@babel/helper-compilation-targets": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.0.tgz", + "integrity": "sha512-kicDo0A/5J0nrsCPbn89mTG3Bm4XgYi0CZtvex9Oyw7gGZE3HXGD0zpQNH+mo+tEfbo8wbmMvJftOwpmPy7aVw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.0.tgz", + "integrity": "sha512-Y4rFpkZODfHrVo70Uaj6cC1JJOt3Pp0MdWSwIKtb8z1/lsjl9AmnB7ErRFV+QNGIfcY1Eruc2UMx5KaRnXjMyg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.0.tgz", + "integrity": "sha512-IvHmcTHDFztQGnn6aWq4t12QaBXTKr1whF/dgp9kz84X6GUcwq9utj7z2wFCUfeOup/QKnOlt2k0zxkGFx9ubg==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.0.tgz", + "integrity": "sha512-3jQUr/HBbMVZmi72LpjQwlZ55i1queL8KcDTQEkAHihttJnAPrcvG9ZNXIfsd2ugpizZo595egYV6xy+pv4Ofw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-create-class-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.0.tgz", + "integrity": "sha512-ti7IdM54NXv29cA4+bNNKEMS4jLMCbJgl+Drv+FgYy0erJLAxNAIXcNjNjrRZEcWq0xJHsNVwQezskMFpF8N9g==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.0.tgz", + "integrity": "sha512-8zv2+xiPHwly31RK4RmnEYY5zziuF3O7W2kIDW+07ewWDh6Oi0dRq8kwvulRkFgt6DB97RlKs5c1y068iPlCUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.0.tgz", + "integrity": "sha512-Xv6mEXqVdaqCBfJFyeab0fH2DnUoMsDmhamxsSi4j8nLd4Vtw213WMJr55xxqipC/YVWyPY3K0blJncPYji+dQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.0.tgz", + "integrity": "sha512-vIFb5250Rbh7roWARvCLvIJ/PtAU5Lhv7BtZ1u24COwpI9Ypjsh+bZcKk6rlIyalK+r0jOc1XQ8I4ovNxNrWrA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.0.tgz", + "integrity": "sha512-PbIr7G9kR8tdH6g8Wouir5uVjklETk91GMVSUq+VaOgiinbCkBP6Q7NN/suM/QutZkMJMvcyAriogcYAdhg8Gw==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.0.tgz", + "integrity": "sha512-V14As3haUOP4ZWrLJ3VVx5rCnrYhMSHN/jX7z6FAt5hjRkLsb0snPCmJwSOML5oxkKO4FNoNv7V5hw/y2bjuvg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.0.tgz", + "integrity": "sha512-27n3l67/R3UrXfizlvHGuTwsRIFyce3D/6a37GRxn28iyTPvNXaW4XvznexRh1zUNLPjbLL22Id0XQElV94ruw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.0.tgz", + "integrity": "sha512-HUxMvy6GtAdd+GKBNYDWCIA776byUQH8zjnfjxwT1P1ARv/wFu8eBDpmXQcLS/IwRtrxIReGiplOwMeyO7nsDQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-optimise-call-expression": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.0.tgz", + "integrity": "sha512-63l1dRXday6S8V3WFY5mXJwcRAnPYxvFfTlt67bwV1rTyVTM5zrp0DBBb13Kl7+ehkCVwIZPumPpFP/4u70+Tw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.0.tgz", + "integrity": "sha512-Q7tBUwjxLTsHEoqktemHBMtb3NYwyJPTJdM+wDwb0g8PZ3kQUIzNvwD5lPaqW/p54TXBc/MXZu9Jr7tbUEUM8Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.0.tgz", + "integrity": "sha512-FXlDZfQeLILfJlC6I1qyEwcHK5UpRCFkaoVyA1nk9A1L1Yu583YO4un2KsLBsu3IJb4CUbctZks8tD9xPQubLw==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.0.tgz", + "integrity": "sha512-LIe2kcHKAZOJDNxujvmp6z3mfN6V9lJxubU4fJIGoQCkKe3Ec2OcbdlYP+vW++4MpxwG0d1wSDOJtQW5kLnkZQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.0.tgz", + "integrity": "sha512-OwYEvzFI38hXklsrbNivzpO3fh87skzx8Pnqi4LoSYeav0xHlueSoCJrSgTPfnbyzopo5b3YVAJkFIcUpK2wsw==", + "dev": true, + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.0.tgz", + "integrity": "sha512-5QKUw2kO+GVmKr2wMYSATCTTnHyscl6sxFRAY+rvN7h7WB0lcG0o4NoV6ZQU32OZGVsYUsfLGgPQpDFdkfjlJQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.0.tgz", + "integrity": "sha512-lBzMle9jcOXtSOXUpc7tvvTpENu/NuekNJVova5lCCWCV9/U1ho2HH2y0p6mBg8fPm/syEAbfaaemYGOHCY3mg==", + "dev": true, + "dependencies": { + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.0.tgz", + "integrity": "sha512-gQDlsSF1iv9RU04clgXqRjrPyyoJMTclFt3K1cjLmTKikc0s/6vE3hlDeEVC71wLTRu72Fq7650kABrdTc2wMQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.0.tgz", + "integrity": "sha512-WRpw5HL4Jhnxw8QARzRvwojp9MIE7Tdk3ez6vRyUk1MwgjJN0aNpRoXainLR5SgxmoXx/vsXGZ6OthP6t/RbUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.0.tgz", + "integrity": "sha512-rWFhWbCJ9Wdmzln1NmSCqn7P0RAD+ogXG/bd9Kg5c7PKWkJtkiXmYsMBeXjDlzHpVTJ4I/hnjs45zX4dEv81xw==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.0.tgz", + "integrity": "sha512-Dzi+NWqyEotgzk/sb7kgQPJQf7AJkQBWsVp1N6JWc1lBVo0vkElUnGdr1PzUBmfsCCN5OOFya3RtpeHk15oLKQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-simple-access": "^7.16.0", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.0.tgz", + "integrity": "sha512-yuGBaHS3lF1m/5R+6fjIke64ii5luRUg97N2wr+z1sF0V+sNSXPxXDdEEL/iYLszsN5VKxVB1IPfEqhzVpiqvg==", + "dev": true, + "dependencies": { + "@babel/helper-hoist-variables": "^7.16.0", + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-identifier": "^7.15.7", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.0.tgz", + "integrity": "sha512-nx4f6no57himWiHhxDM5pjwhae5vLpTK2zCnDH8+wNLJy0TVER/LJRHl2bkt6w9Aad2sPD5iNNoUpY3X9sTGDg==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.0.tgz", + "integrity": "sha512-LogN88uO+7EhxWc8WZuQ8vxdSyVGxhkh8WTC3tzlT8LccMuQdA81e9SGV6zY7kY2LjDhhDOFdQVxdGwPyBCnvg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.0.tgz", + "integrity": "sha512-fhjrDEYv2DBsGN/P6rlqakwRwIp7rBGLPbrKxwh7oVt5NNkIhZVOY2GRV+ULLsQri1bDqwDWnU3vhlmx5B2aCw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.0.tgz", + "integrity": "sha512-fds+puedQHn4cPLshoHcR1DTMN0q1V9ou0mUjm8whx9pGcNvDrVVrgw+KJzzCaiTdaYhldtrUps8DWVMgrSEyg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.3.tgz", + "integrity": "sha512-3MaDpJrOXT1MZ/WCmkOFo7EtmVVC8H4EUZVrHvFOsmwkk4lOjQj8rzv8JKUZV4YoQKeoIgk07GO+acPU9IMu/w==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.0.tgz", + "integrity": "sha512-XLldD4V8+pOqX2hwfWhgwXzGdnDOThxaNTgqagOcpBgIxbUvpgU2FMvo5E1RyHbk756WYgdbS0T8y0Cj9FKkWQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.0.tgz", + "integrity": "sha512-FJFdJAqaCpndL+pIf0aeD/qlQwT7QXOvR6Cc8JPvNhKJBi2zc/DPc4g05Y3fbD/0iWAMQFGij4+Xw+4L/BMpTg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.16.0.tgz", + "integrity": "sha512-rqDgIbukZ44pqq7NIRPGPGNklshPkvlmvqjdx3OZcGPk4zGIenYkxDTvl3LsSL8gqcc3ZzGmXPE6hR/u/voNOw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-module-imports": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-jsx": "^7.16.0", + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.0.tgz", + "integrity": "sha512-qq65iSqBRq0Hr3wq57YG2AmW0H6wgTnIzpffTphrUWUgLCOK+zf1f7G0vuOiXrp7dU1qq+fQBoqZ3wCDAkhFzw==", + "dev": true, + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.16.0.tgz", + "integrity": "sha512-NC/Bj2MG+t8Ef5Pdpo34Ay74X4Rt804h5y81PwOpfPtmAK3i6CizmQqwyBQzIepz1Yt8wNr2Z2L7Lu3qBMfZMA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.0.tgz", + "integrity": "sha512-JAvGxgKuwS2PihiSFaDrp94XOzzTUeDeOQlcKzVAyaPap7BnZXK/lvMDiubkPTdotPKOIZq9xWXWnggUMYiExg==", + "dev": true, + "dependencies": { + "regenerator-transform": "^0.14.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.0.tgz", + "integrity": "sha512-Dgs8NNCehHSvXdhEhln8u/TtJxfVwGYCgP2OOr5Z3Ar+B+zXicEOKNTyc+eca2cuEOMtjW6m9P9ijOt8QdqWkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.4.tgz", + "integrity": "sha512-pru6+yHANMTukMtEZGC4fs7XPwg35v8sj5CIEmE+gEkFljFiVJxEWxx/7ZDkTK+iZRYo1bFXBtfIN95+K3cJ5A==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.4.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.0.tgz", + "integrity": "sha512-iVb1mTcD8fuhSv3k99+5tlXu5N0v8/DPm2mO3WACLG6al1CGZH7v09HJyUb1TtYl/Z+KrM6pHSIJdZxP5A+xow==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.0.tgz", + "integrity": "sha512-Ao4MSYRaLAQczZVp9/7E7QHsCuK92yHRrmVNRe/SlEJjhzivq0BSn8mEraimL8wizHZ3fuaHxKH0iwzI13GyGg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.0.tgz", + "integrity": "sha512-/ntT2NljR9foobKk4E/YyOSwcGUXtYWv5tinMK/3RkypyNBNdhHUaq6Orw5DWq9ZcNlS03BIlEALFeQgeVAo4Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.0.tgz", + "integrity": "sha512-Rd4Ic89hA/f7xUSJQk5PnC+4so50vBoBfxjdQAdvngwidM8jYIBVxBZ/sARxD4e0yMXRbJVDrYf7dyRtIIKT6Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.0.tgz", + "integrity": "sha512-++V2L8Bdf4vcaHi2raILnptTBjGEFxn5315YU+e8+EqXIucA+q349qWngCLpUYqqv233suJ6NOienIVUpS9cqg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.16.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.1.tgz", + "integrity": "sha512-NO4XoryBng06jjw/qWEU2LhcLJr1tWkhpMam/H4eas/CDKMX/b2/Ylb6EI256Y7+FVPCawwSM1rrJNOpDiz+Lg==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-typescript": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.0.tgz", + "integrity": "sha512-VFi4dhgJM7Bpk8lRc5CMaRGlKZ29W9C3geZjt9beuzSUrlJxsNwX7ReLwaL6WEvsOf2EQkyIJEPtF8EXjB/g2A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.0.tgz", + "integrity": "sha512-jHLK4LxhHjvCeZDWyA9c+P9XH1sOxRd1RO9xMtDVRAOND/PczPqizEtVdx4TQF/wyPaewqpT+tgQFYMnN/P94A==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.4.tgz", + "integrity": "sha512-v0QtNd81v/xKj4gNKeuAerQ/azeNn/G1B1qMLeXOcV8+4TWlD2j3NV1u8q29SDFBXx/NBq5kyEAO+0mpRgacjA==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.16.4", + "@babel/helper-compilation-targets": "^7.16.3", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.2", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-async-generator-functions": "^7.16.4", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-class-static-block": "^7.16.0", + "@babel/plugin-proposal-dynamic-import": "^7.16.0", + "@babel/plugin-proposal-export-namespace-from": "^7.16.0", + "@babel/plugin-proposal-json-strings": "^7.16.0", + "@babel/plugin-proposal-logical-assignment-operators": "^7.16.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-object-rest-spread": "^7.16.0", + "@babel/plugin-proposal-optional-catch-binding": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-proposal-private-property-in-object": "^7.16.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.16.0", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.16.0", + "@babel/plugin-transform-async-to-generator": "^7.16.0", + "@babel/plugin-transform-block-scoped-functions": "^7.16.0", + "@babel/plugin-transform-block-scoping": "^7.16.0", + "@babel/plugin-transform-classes": "^7.16.0", + "@babel/plugin-transform-computed-properties": "^7.16.0", + "@babel/plugin-transform-destructuring": "^7.16.0", + "@babel/plugin-transform-dotall-regex": "^7.16.0", + "@babel/plugin-transform-duplicate-keys": "^7.16.0", + "@babel/plugin-transform-exponentiation-operator": "^7.16.0", + "@babel/plugin-transform-for-of": "^7.16.0", + "@babel/plugin-transform-function-name": "^7.16.0", + "@babel/plugin-transform-literals": "^7.16.0", + "@babel/plugin-transform-member-expression-literals": "^7.16.0", + "@babel/plugin-transform-modules-amd": "^7.16.0", + "@babel/plugin-transform-modules-commonjs": "^7.16.0", + "@babel/plugin-transform-modules-systemjs": "^7.16.0", + "@babel/plugin-transform-modules-umd": "^7.16.0", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.16.0", + "@babel/plugin-transform-new-target": "^7.16.0", + "@babel/plugin-transform-object-super": "^7.16.0", + "@babel/plugin-transform-parameters": "^7.16.3", + "@babel/plugin-transform-property-literals": "^7.16.0", + "@babel/plugin-transform-regenerator": "^7.16.0", + "@babel/plugin-transform-reserved-words": "^7.16.0", + "@babel/plugin-transform-shorthand-properties": "^7.16.0", + "@babel/plugin-transform-spread": "^7.16.0", + "@babel/plugin-transform-sticky-regex": "^7.16.0", + "@babel/plugin-transform-template-literals": "^7.16.0", + "@babel/plugin-transform-typeof-symbol": "^7.16.0", + "@babel/plugin-transform-unicode-escapes": "^7.16.0", + "@babel/plugin-transform-unicode-regex": "^7.16.0", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.16.0", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.4.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "core-js-compat": "^3.19.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.16.0.tgz", + "integrity": "sha512-d31IFW2bLRB28uL1WoElyro8RH5l6531XfxMtCeCmp6RVAF1uTfxxUA0LH1tXl+psZdwfmIbwoG4U5VwgbhtLw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-transform-react-display-name": "^7.16.0", + "@babel/plugin-transform-react-jsx": "^7.16.0", + "@babel/plugin-transform-react-jsx-development": "^7.16.0", + "@babel/plugin-transform-react-pure-annotations": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.16.0.tgz", + "integrity": "sha512-txegdrZYgO9DlPbv+9QOVpMnKbOtezsLHWsnsRF4AjbSIsVaujrq1qg8HK0mxQpWv0jnejt0yEoW1uWpvbrDTg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-transform-typescript": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz", + "integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==", + "dependencies": { + "regenerator-runtime": "^0.13.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz", + "integrity": "sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.16.0", + "@babel/parser": "^7.16.0", + "@babel/types": "^7.16.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.3.tgz", + "integrity": "sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.16.0", + "@babel/generator": "^7.16.0", + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-hoist-variables": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0", + "@babel/parser": "^7.16.3", + "@babel/types": "^7.16.0", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz", + "integrity": "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.15.7", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.5.tgz", + "integrity": "sha512-6nFkfkmSeV/rqSaS4oWHgmpnYw194f6hmWF5is6b0J1naJZoiD0NTc9AiUwPHvWsowkjuHErCZT1wa0jg+BLIA==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", + "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.12.0.tgz", + "integrity": "sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/eslintrc/node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", + "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.0", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@popperjs/core": { + "version": "2.10.2", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.10.2.tgz", + "integrity": "sha512-IXf3XA7+XyN7CP9gGh/XB0UxVMlvARGEgGXLubFICsUMGz6Q+DU+i4gGlpOxTjKvXjkJDJC8YdqdKkDj9qZHEQ==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@react-aria/ssr": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.1.0.tgz", + "integrity": "sha512-RxqQKmE8sO7TGdrcSlHTcVzMP450hqowtBSd2bBS9oPlcokVkaGq28c3Rwa8ty5ctw4EBCjXqjP7xdcKMGDzug==", + "dependencies": { + "@babel/runtime": "^7.6.2" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0-rc.1" + } + }, + "node_modules/@restart/context": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@restart/context/-/context-2.1.4.tgz", + "integrity": "sha512-INJYZQJP7g+IoDUh/475NlGiTeMfwTXUEr3tmRneckHIxNolGOW9CTq83S8cxq0CgJwwcMzMJFchxvlwe7Rk8Q==", + "peerDependencies": { + "react": ">=16.3.2" + } + }, + "node_modules/@restart/hooks": { + "version": "0.3.27", + "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.3.27.tgz", + "integrity": "sha512-s984xV/EapUIfkjlf8wz9weP2O9TNKR96C68FfMEy2bE69+H4cNv3RD4Mf97lW7Htt7PjZrYTjSC8f3SB9VCXw==", + "dependencies": { + "dequal": "^2.0.2" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@restart/ui": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@restart/ui/-/ui-0.2.3.tgz", + "integrity": "sha512-FDhtjIR9QvUfMwvFsgVurRA1qdYxM0F0S07acywjG7gNI2YmQo78rtCYIe553V/pyBjEjaKAg3fzBFCocFTqyQ==", + "dependencies": { + "@babel/runtime": "^7.13.16", + "@popperjs/core": "^2.10.1", + "@react-aria/ssr": "^3.0.1", + "@restart/hooks": "^0.4.0", + "@types/warning": "^3.0.0", + "dequal": "^2.0.2", + "dom-helpers": "^5.2.0", + "prop-types": "^15.7.2", + "uncontrollable": "^7.2.1", + "warning": "^4.0.3" + }, + "peerDependencies": { + "react": ">=16.14.0", + "react-dom": ">=16.14.0" + } + }, + "node_modules/@restart/ui/node_modules/@restart/hooks": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.1.tgz", + "integrity": "sha512-87UMGZcFwbj0Gr+8eEBAzL6H8xF5pMwq/S3LWeFK9cg4+lTqLFMsiVQFT4ncMJzqgpdD7T6ktF8PsEHeN2O+MQ==", + "dependencies": { + "dequal": "^2.0.2" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@sindresorhus/is": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", + "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true, + "optional": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "dev": true, + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect-history-api-fallback": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", + "integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==", + "dev": true, + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "node_modules/@types/eslint": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.2.0.tgz", + "integrity": "sha512-74hbvsnc+7TEDa1z5YLSe4/q8hGYB3USNvCuzHUJrjPV6hXaq8IXcngCrHkuvFt0+8rFz7xYXrHgNayIX0UZvQ==", + "dev": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.1.tgz", + "integrity": "sha512-SCFeogqiptms4Fg29WpOTk5nHIzfpKCemSN63ksBQYKTcXoJEmJagV+DhVmbapZzY4/5YaOV1nZwrsU79fFm1g==", + "dev": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "0.0.50", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz", + "integrity": "sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==", + "dev": true + }, + "node_modules/@types/express": { + "version": "4.17.13", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", + "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", + "dev": true, + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.18", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.17.25", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.25.tgz", + "integrity": "sha512-OUJIVfRMFijZukGGwTpKNFprqCCXk5WjNGvUgB/CxxBR40QWSjsNK86+yvGKlCOGc7sbwfHLaXhkG+NsytwBaQ==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "node_modules/@types/fork-ts-checker-webpack-plugin": { + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/@types/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-0.4.5.tgz", + "integrity": "sha512-xb9bErGrHZ0ypV3ls0tNekGItPoS6tSLi74zjfNOTbCcDOdG7lokSQi24DFXvvh3TwyTfVv2U9LJ172Wz82DrA==", + "deprecated": "This is a stub types definition. fork-ts-checker-webpack-plugin provides its own type definitions, so you do not need this installed.", + "dev": true, + "dependencies": { + "fork-ts-checker-webpack-plugin": "*" + } + }, + "node_modules/@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "node_modules/@types/history": { + "version": "4.7.11", + "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz", + "integrity": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==" + }, + "node_modules/@types/http-proxy": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.7.tgz", + "integrity": "sha512-9hdj6iXH64tHSLTY+Vt2eYOGzSogC+JQ2H7bdPWkuh7KXP5qLllWx++t+K9Wk556c3dkDdPws/SpMRi0sdCT1w==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/invariant": { + "version": "2.2.35", + "resolved": "https://registry.npmjs.org/@types/invariant/-/invariant-2.2.35.tgz", + "integrity": "sha512-DxX1V9P8zdJPYQat1gHyY0xj3efl8gnMVjiM9iCY6y27lj+PoQWkgjt8jDqmovPqULkKVpKRg8J36iQiA+EtEg==" + }, + "node_modules/@types/json-schema": { + "version": "7.0.9", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", + "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==", + "dev": true + }, + "node_modules/@types/mime": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", + "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", + "dev": true + }, + "node_modules/@types/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", + "dev": true + }, + "node_modules/@types/node": { + "version": "16.11.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.10.tgz", + "integrity": "sha512-3aRnHa1KlOEEhJ6+CvyHKK5vE9BcLGjtUpwvqYLRvYNQKMfabu3BwfJaA/SLW8dxe28LsNDjtHwePTuzn3gmOA==", + "dev": true + }, + "node_modules/@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "dev": true + }, + "node_modules/@types/prop-types": { + "version": "15.7.4", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz", + "integrity": "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==" + }, + "node_modules/@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "dev": true + }, + "node_modules/@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "dev": true + }, + "node_modules/@types/react": { + "version": "17.0.37", + "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.37.tgz", + "integrity": "sha512-2FS1oTqBGcH/s0E+CjrCCR9+JMpsu9b69RTFO+40ua43ZqP5MmQ4iUde/dMjWR909KxZwmOQIFq6AV6NjEG5xg==", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "17.0.18", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.18.tgz", + "integrity": "sha512-rLVtIfbwyur2iFKykP2w0pl/1unw26b5td16d5xMgp7/yjTHomkyxPYChFoCr/FtEX1lN9wY6lFj1qvKdS5kDw==", + "dev": true, + "dependencies": { + "@types/react": "^17" + } + }, + "node_modules/@types/react-router": { + "version": "5.1.19", + "resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.19.tgz", + "integrity": "sha512-Fv/5kb2STAEMT3wHzdKQK2z8xKq38EDIGVrutYLmQVVLe+4orDFquU52hQrULnEHinMKv9FSA6lf9+uNT1ITtA==", + "dependencies": { + "@types/history": "^4.7.11", + "@types/react": "*" + } + }, + "node_modules/@types/react-router-dom": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz", + "integrity": "sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==", + "dependencies": { + "@types/history": "^4.7.11", + "@types/react": "*", + "@types/react-router": "*" + } + }, + "node_modules/@types/react-transition-group": { + "version": "4.4.4", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.4.tgz", + "integrity": "sha512-7gAPz7anVK5xzbeQW9wFBDg7G++aPLAFY0QaSMOou9rJZpbuI58WAuJrgu+qR92l61grlnCUe7AFX8KGahAgug==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/scheduler": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", + "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" + }, + "node_modules/@types/serve-static": { + "version": "1.13.10", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.10.tgz", + "integrity": "sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==", + "dev": true, + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "node_modules/@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==", + "dev": true + }, + "node_modules/@types/tapable": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.8.tgz", + "integrity": "sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==", + "dev": true + }, + "node_modules/@types/uglify-js": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.13.1.tgz", + "integrity": "sha512-O3MmRAk6ZuAKa9CHgg0Pr0+lUOqoMLpc9AS4R8ano2auvsg7IE8syF3Xh/NPr26TWklxYcqoEEFdzLLs1fV9PQ==", + "dev": true, + "dependencies": { + "source-map": "^0.6.1" + } + }, + "node_modules/@types/uglify-js/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/warning": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.0.tgz", + "integrity": "sha1-DSUBJorY+ZYrdA04fEZU9fjiPlI=" + }, + "node_modules/@types/webpack": { + "version": "4.41.32", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.32.tgz", + "integrity": "sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/tapable": "^1", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "anymatch": "^3.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/@types/webpack-dev-server": { + "version": "3.11.6", + "resolved": "https://registry.npmjs.org/@types/webpack-dev-server/-/webpack-dev-server-3.11.6.tgz", + "integrity": "sha512-XCph0RiiqFGetukCTC3KVnY1jwLcZ84illFRMbyFzCcWl90B/76ew0tSqF46oBhnLC4obNDG7dMO0JfTN0MgMQ==", + "dev": true, + "dependencies": { + "@types/connect-history-api-fallback": "*", + "@types/express": "*", + "@types/serve-static": "*", + "@types/webpack": "^4", + "http-proxy-middleware": "^1.0.0" + } + }, + "node_modules/@types/webpack-sources": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.0.tgz", + "integrity": "sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + } + }, + "node_modules/@types/webpack-sources/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@types/webpack/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz", + "integrity": "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==", + "dev": true, + "dependencies": { + "@typescript-eslint/experimental-utils": "4.33.0", + "@typescript-eslint/scope-manager": "4.33.0", + "debug": "^4.3.1", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.1.8", + "regexpp": "^3.1.0", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^4.0.0", + "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz", + "integrity": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.7", + "@typescript-eslint/scope-manager": "4.33.0", + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/typescript-estree": "4.33.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.33.0.tgz", + "integrity": "sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "4.33.0", + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/typescript-estree": "4.33.0", + "debug": "^4.3.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz", + "integrity": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/visitor-keys": "4.33.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz", + "integrity": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==", + "dev": true, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz", + "integrity": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/visitor-keys": "4.33.0", + "debug": "^4.3.1", + "globby": "^11.0.3", + "is-glob": "^4.0.1", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz", + "integrity": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", + "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "dev": true, + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "dev": true, + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "dev": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "dev": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", + "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", + "dev": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webpack-cli/configtest": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.1.0.tgz", + "integrity": "sha512-ttOkEkoalEHa7RaFYpM0ErK1xc4twg3Am9hfHhL7MVqlHebnkYd2wuI/ZqTDj0cVzZho6PdinY0phFZV3O0Mzg==", + "dev": true, + "peerDependencies": { + "webpack": "4.x.x || 5.x.x", + "webpack-cli": "4.x.x" + } + }, + "node_modules/@webpack-cli/info": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.4.0.tgz", + "integrity": "sha512-F6b+Man0rwE4n0409FyAJHStYA5OIZERxmnUfLVwv0mc0V1wLad3V7jqRlMkgKBeAq07jUvglacNaa6g9lOpuw==", + "dev": true, + "dependencies": { + "envinfo": "^7.7.3" + }, + "peerDependencies": { + "webpack-cli": "4.x.x" + } + }, + "node_modules/@webpack-cli/serve": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.6.0.tgz", + "integrity": "sha512-ZkVeqEmRpBV2GHvjjUZqEai2PpUbuq8Bqd//vEYsp63J8WyexI8ppCqVS3Zs0QADf6aWuPdU+0XsPI647PVlQA==", + "dev": true, + "peerDependencies": { + "webpack-cli": "4.x.x" + }, + "peerDependenciesMeta": { + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "node_modules/accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true, + "peerDependencies": { + "ajv": ">=5.0.0" + } + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true, + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "optional": true + }, + "node_modules/archive-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz", + "integrity": "sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==", + "dev": true, + "optional": true, + "dependencies": { + "file-type": "^4.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/archive-type/node_modules/file-type": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz", + "integrity": "sha512-f2UbFQEk7LXgWpi5ntcO86OeA/cC80fuDDDaX/fZ2ZGel+AF7leRQqBBW1eJNiiQkrZlAoM6P+VYP5P6bOlDEQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + }, + "node_modules/array-includes": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz", + "integrity": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz", + "integrity": "sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/async": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "dev": true, + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", + "dev": true + }, + "node_modules/async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "dev": true + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true, + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/babel-code-frame": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", + "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", + "dev": true, + "dependencies": { + "chalk": "^1.1.3", + "esutils": "^2.0.2", + "js-tokens": "^3.0.2" + } + }, + "node_modules/babel-code-frame/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-code-frame/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-code-frame/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-code-frame/node_modules/js-tokens": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", + "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=", + "dev": true + }, + "node_modules/babel-code-frame/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-code-frame/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/babel-helper-function-name": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz", + "integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=", + "dev": true, + "dependencies": { + "babel-helper-get-function-arity": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "node_modules/babel-helper-get-function-arity": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz", + "integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=", + "dev": true, + "dependencies": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "node_modules/babel-loader": { + "version": "8.2.3", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.3.tgz", + "integrity": "sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==", + "dev": true, + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^1.4.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-messages": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz", + "integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=", + "dev": true, + "dependencies": { + "babel-runtime": "^6.22.0" + } + }, + "node_modules/babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dev": true, + "dependencies": { + "object.assign": "^4.1.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.0.tgz", + "integrity": "sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.3.0", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.4.0.tgz", + "integrity": "sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.0", + "core-js-compat": "^3.18.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.0.tgz", + "integrity": "sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-syntax-class-properties": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz", + "integrity": "sha1-1+sjt5oxf4VDlixQW4J8fWysJ94=", + "dev": true + }, + "node_modules/babel-plugin-transform-class-properties": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz", + "integrity": "sha1-anl2PqYdM9NvN7YRqp3vgagbRqw=", + "dev": true, + "dependencies": { + "babel-helper-function-name": "^6.24.1", + "babel-plugin-syntax-class-properties": "^6.8.0", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" + } + }, + "node_modules/babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "dev": true, + "dependencies": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + } + }, + "node_modules/babel-runtime/node_modules/regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", + "dev": true + }, + "node_modules/babel-template": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz", + "integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=", + "dev": true, + "dependencies": { + "babel-runtime": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "lodash": "^4.17.4" + } + }, + "node_modules/babel-traverse": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz", + "integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=", + "dev": true, + "dependencies": { + "babel-code-frame": "^6.26.0", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "debug": "^2.6.8", + "globals": "^9.18.0", + "invariant": "^2.2.2", + "lodash": "^4.17.4" + } + }, + "node_modules/babel-traverse/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/babel-traverse/node_modules/globals": { + "version": "9.18.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz", + "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-traverse/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/babel-types": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz", + "integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=", + "dev": true, + "dependencies": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + } + }, + "node_modules/babel-types/node_modules/to-fast-properties": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", + "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babylon": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", + "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==", + "dev": true, + "bin": { + "babylon": "bin/babylon.js" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "optional": true + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", + "dev": true + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/bin-build": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz", + "integrity": "sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA==", + "dev": true, + "optional": true, + "dependencies": { + "decompress": "^4.0.0", + "download": "^6.2.2", + "execa": "^0.7.0", + "p-map-series": "^1.0.0", + "tempfile": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-build/node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "dev": true, + "optional": true, + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "node_modules/bin-build/node_modules/execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", + "dev": true, + "optional": true, + "dependencies": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-build/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-build/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-build/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "optional": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/bin-build/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "optional": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-build/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-build/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "optional": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-build/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-build/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "optional": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/bin-build/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true, + "optional": true + }, + "node_modules/bin-check": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", + "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", + "dev": true, + "optional": true, + "dependencies": { + "execa": "^0.7.0", + "executable": "^4.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-check/node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "dev": true, + "optional": true, + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "node_modules/bin-check/node_modules/execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", + "dev": true, + "optional": true, + "dependencies": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-check/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-check/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-check/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "optional": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/bin-check/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "optional": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-check/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-check/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "optional": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-check/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-check/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "optional": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/bin-check/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true, + "optional": true + }, + "node_modules/bin-version": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz", + "integrity": "sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==", + "dev": true, + "optional": true, + "dependencies": { + "execa": "^1.0.0", + "find-versions": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-version-check": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz", + "integrity": "sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==", + "dev": true, + "optional": true, + "dependencies": { + "bin-version": "^3.0.0", + "semver": "^5.6.0", + "semver-truncate": "^1.1.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-version-check/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "optional": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/bin-version/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "optional": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/bin-version/node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "optional": true, + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-version/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "optional": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-version/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-version/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "optional": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-version/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-version/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "optional": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/bin-version/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "optional": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-version/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bin-version/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "optional": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/bin-wrapper": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz", + "integrity": "sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q==", + "dev": true, + "optional": true, + "dependencies": { + "bin-check": "^4.1.0", + "bin-version-check": "^4.0.0", + "download": "^7.1.0", + "import-lazy": "^3.1.0", + "os-filter-obj": "^2.0.0", + "pify": "^4.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-wrapper/node_modules/download": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz", + "integrity": "sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==", + "dev": true, + "optional": true, + "dependencies": { + "archive-type": "^4.0.0", + "caw": "^2.0.1", + "content-disposition": "^0.5.2", + "decompress": "^4.2.0", + "ext-name": "^5.0.0", + "file-type": "^8.1.0", + "filenamify": "^2.0.0", + "get-stream": "^3.0.0", + "got": "^8.3.1", + "make-dir": "^1.2.0", + "p-event": "^2.1.0", + "pify": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-wrapper/node_modules/download/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/file-type": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz", + "integrity": "sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-wrapper/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/got": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", + "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", + "dev": true, + "optional": true, + "dependencies": { + "@sindresorhus/is": "^0.7.0", + "cacheable-request": "^2.1.1", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "into-stream": "^3.1.0", + "is-retry-allowed": "^1.1.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "mimic-response": "^1.0.0", + "p-cancelable": "^0.4.0", + "p-timeout": "^2.0.1", + "pify": "^3.0.0", + "safe-buffer": "^5.1.1", + "timed-out": "^4.0.1", + "url-parse-lax": "^3.0.0", + "url-to-options": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/got/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "optional": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/make-dir/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/p-cancelable": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", + "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/p-event": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz", + "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==", + "dev": true, + "optional": true, + "dependencies": { + "p-timeout": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/bin-wrapper/node_modules/p-timeout": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", + "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", + "dev": true, + "optional": true, + "dependencies": { + "p-finally": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/bin-wrapper/node_modules/url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", + "dev": true, + "optional": true, + "dependencies": { + "prepend-http": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/bl": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", + "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", + "dev": true, + "optional": true, + "dependencies": { + "readable-stream": "^2.3.5", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/bl/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "optional": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/bl/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "optional": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "dev": true, + "dependencies": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "dev": true, + "dependencies": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true, + "optional": true + }, + "node_modules/bootstrap": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.6.1.tgz", + "integrity": "sha512-0dj+VgI9Ecom+rvvpNZ4MUZJz8dcX7WCX+eTID9+/8HgOkv3dsRzi8BGeZJCQU6flWQVYxwTQnEZFrmJSEO7og==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + }, + "peerDependencies": { + "jquery": "1.9.1 - 3", + "popper.js": "^1.16.1" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.18.1.tgz", + "integrity": "sha512-8ScCzdpPwR2wQh8IT82CA2VgDwjHyqMovPBZSNH54+tm4Jk2pCuv90gmAdH6J84OCRWi0b4gMe6O6XPXuJnjgQ==", + "dev": true, + "dependencies": { + "caniuse-lite": "^1.0.30001280", + "electron-to-chromium": "^1.3.896", + "escalade": "^3.1.1", + "node-releases": "^2.0.1", + "picocolors": "^1.0.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "optional": true, + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "dev": true, + "optional": true, + "dependencies": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "node_modules/buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", + "dev": true, + "optional": true + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "dev": true, + "optional": true, + "engines": { + "node": "*" + } + }, + "node_modules/buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==", + "dev": true, + "optional": true + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "dev": true + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cacheable-request": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", + "integrity": "sha512-vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ==", + "dev": true, + "optional": true, + "dependencies": { + "clone-response": "1.0.2", + "get-stream": "3.0.0", + "http-cache-semantics": "3.8.1", + "keyv": "3.0.0", + "lowercase-keys": "1.0.0", + "normalize-url": "2.0.1", + "responselike": "1.0.2" + } + }, + "node_modules/cacheable-request/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/cacheable-request/node_modules/lowercase-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", + "integrity": "sha512-RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001418", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001418.tgz", + "integrity": "sha512-oIs7+JL3K9JRQ3jPZjlH6qyYDp+nBTCais7hjh0s+fuBwufc7uZ7hPYMXrDOJhV360KGMTcczMRObk0/iMqZRg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + } + ] + }, + "node_modules/caw": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz", + "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==", + "dev": true, + "optional": true, + "dependencies": { + "get-proxy": "^2.0.0", + "isurl": "^1.0.0-alpha5", + "tunnel-agent": "^0.6.0", + "url-to-options": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chart.js": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-3.9.1.tgz", + "integrity": "sha512-Ro2JbLmvg83gXF5F4sniaQ+lTbSv18E+TIf2cOeiH1Iqd2PGFOtem+DUufMZsCJwFE7ywPOpfXFBwRTGq7dh6w==" + }, + "node_modules/chokidar": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", + "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/classnames": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.1.tgz", + "integrity": "sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==" + }, + "node_modules/cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "dependencies": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "node_modules/cliui/node_modules/ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui/node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "node_modules/cliui/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/cliui/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==", + "dev": true, + "optional": true, + "dependencies": { + "mimic-response": "^1.0.0" + } + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "node_modules/colorette": { + "version": "2.0.16", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.16.tgz", + "integrity": "sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==", + "dev": true + }, + "node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "node_modules/component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "node_modules/config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "dev": true, + "optional": true, + "dependencies": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "node_modules/connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "dev": true, + "dependencies": { + "safe-buffer": "5.1.2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "dev": true + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "deprecated": "core-js@<3.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.", + "dev": true, + "hasInstallScript": true + }, + "node_modules/core-js-compat": { + "version": "3.19.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.19.1.tgz", + "integrity": "sha512-Q/VJ7jAF/y68+aUsQJ/afPOewdsGkDtcMb40J8MbuWKlK3Y+wtHq8bTHKPj2WKWLIqmS5JhHs4CzHtz6pT2W6g==", + "dev": true, + "dependencies": { + "browserslist": "^4.17.6", + "semver": "7.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat/node_modules/semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "dev": true, + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/css-loader": { + "version": "5.2.7", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz", + "integrity": "sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==", + "dev": true, + "dependencies": { + "icss-utils": "^5.1.0", + "loader-utils": "^2.0.0", + "postcss": "^8.2.15", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.27.0 || ^5.0.0" + } + }, + "node_modules/css-loader/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/css-loader/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/css-loader/node_modules/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dev": true, + "optional": true, + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dev": true, + "optional": true, + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-tree/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true, + "optional": true, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dev": true, + "optional": true, + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csstype": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.10.tgz", + "integrity": "sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==" + }, + "node_modules/cwebp-bin": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cwebp-bin/-/cwebp-bin-7.0.1.tgz", + "integrity": "sha512-Ko5ADY74/dbfd8xG0+f+MUP9UKjCe1TG4ehpW0E5y4YlPdwDJlGrSzSR4/Yonxpm9QmZE1RratkIxFlKeyo3FA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "dependencies": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.1" + }, + "bin": { + "cwebp": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/imagemin/cwebp-bin?sponsor=1" + } + }, + "node_modules/date-fns": { + "version": "2.26.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.26.0.tgz", + "integrity": "sha512-VQI812dRi3cusdY/fhoBKvc6l2W8BPWU1FNVnFH9Nttjx4AFBRzfSVb/Eyc7jBT6e9sg1XtAGsYpBQ6c/jygbg==", + "dev": true, + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" + } + }, + "node_modules/debug": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/decompress": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz", + "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==", + "dev": true, + "optional": true, + "dependencies": { + "decompress-tar": "^4.0.0", + "decompress-tarbz2": "^4.0.0", + "decompress-targz": "^4.0.0", + "decompress-unzip": "^4.0.1", + "graceful-fs": "^4.1.10", + "make-dir": "^1.0.0", + "pify": "^2.3.0", + "strip-dirs": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", + "dev": true, + "optional": true, + "dependencies": { + "mimic-response": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tar": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz", + "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==", + "dev": true, + "optional": true, + "dependencies": { + "file-type": "^5.2.0", + "is-stream": "^1.1.0", + "tar-stream": "^1.5.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tar/node_modules/file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tar/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress-tarbz2": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz", + "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==", + "dev": true, + "optional": true, + "dependencies": { + "decompress-tar": "^4.1.0", + "file-type": "^6.1.0", + "is-stream": "^1.1.0", + "seek-bzip": "^1.0.5", + "unbzip2-stream": "^1.0.9" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tarbz2/node_modules/file-type": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz", + "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-tarbz2/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress-targz": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz", + "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==", + "dev": true, + "optional": true, + "dependencies": { + "decompress-tar": "^4.1.1", + "file-type": "^5.2.0", + "is-stream": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-targz/node_modules/file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-targz/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress-unzip": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz", + "integrity": "sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==", + "dev": true, + "optional": true, + "dependencies": { + "file-type": "^3.8.0", + "get-stream": "^2.2.0", + "pify": "^2.3.0", + "yauzl": "^2.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress-unzip/node_modules/file-type": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", + "integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress-unzip/node_modules/get-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", + "integrity": "sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==", + "dev": true, + "optional": true, + "dependencies": { + "object-assign": "^4.0.1", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress-unzip/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decompress/node_modules/make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "optional": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress/node_modules/make-dir/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/decompress/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dev": true, + "dependencies": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "dev": true, + "dependencies": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/default-gateway/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/default-gateway/node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/default-gateway/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/default-gateway/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/default-gateway/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/default-gateway/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/default-gateway/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "dependencies": { + "object-keys": "^1.0.12" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dev": true, + "dependencies": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/del/node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "dev": true, + "dependencies": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/globby/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/dequal": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.2.tgz", + "integrity": "sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==", + "engines": { + "node": ">=6" + } + }, + "node_modules/destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "dev": true + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=", + "dev": true + }, + "node_modules/dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "dev": true, + "dependencies": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "dev": true, + "dependencies": { + "buffer-indexof": "^1.0.0" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dev": true, + "optional": true, + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "optional": true + }, + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "optional": true, + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "optional": true, + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/download": { + "version": "6.2.5", + "resolved": "https://registry.npmjs.org/download/-/download-6.2.5.tgz", + "integrity": "sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==", + "dev": true, + "optional": true, + "dependencies": { + "caw": "^2.0.0", + "content-disposition": "^0.5.2", + "decompress": "^4.0.0", + "ext-name": "^5.0.0", + "file-type": "5.2.0", + "filenamify": "^2.0.0", + "get-stream": "^3.0.0", + "got": "^7.0.0", + "make-dir": "^1.0.0", + "p-event": "^1.0.0", + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "optional": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/download/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/duplexer3": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", + "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==", + "dev": true, + "optional": true + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.3.tgz", + "integrity": "sha512-hfpppjYhqIZB8jrNb0rNceQRkSnBN7QJl3W26O1jUv3F3BkQknqy1YTqVXkFnIcFtBc3Qnv5M7r5Lez2iOLgZA==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.3.tgz", + "integrity": "sha512-EGAbGvH7j7Xt2nc0E7D99La1OiEs8LnyimkRgwExpUMScN6O+3x9tIWs7PLQZVNx4YD+00skHXPXi1yQHpAmZA==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/enhanced-resolve/node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "dependencies": { + "ansi-colors": "^4.1.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "optional": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/envinfo": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", + "dev": true, + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", + "dev": true + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "dev": true + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint": { + "version": "7.32.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", + "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.3", + "@humanwhocodes/config-array": "^0.5.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.1.2", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.9", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.27.1.tgz", + "integrity": "sha512-meyunDjMMYeWr/4EBLTV1op3iSG3mjT/pz5gti38UzfM4OPpNc2m0t2xvKCOMU5D6FSdd34BIMFOvQbW+i8GAA==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.4", + "array.prototype.flatmap": "^1.2.5", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.0.4", + "object.entries": "^1.1.5", + "object.fromentries": "^2.0.5", + "object.hasown": "^1.1.0", + "object.values": "^1.1.5", + "prop-types": "^15.7.2", + "resolve": "^2.0.0-next.3", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.6" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.3.0.tgz", + "integrity": "sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.3", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.3.tgz", + "integrity": "sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==", + "dev": true, + "dependencies": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/eslint/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/eslint/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.12.0.tgz", + "integrity": "sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/eslint/node_modules/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dev": true, + "dependencies": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esquery/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/eventsource": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.1.0.tgz", + "integrity": "sha512-VSJjT5oCNrFvCS6igjzPAt5hBzQ2qPBFIbJ03zLI9SE0mxwZpMw6BfJrbFHm1a141AavMEB8JHmBhWAd66PfCg==", + "dev": true, + "dependencies": { + "original": "^1.0.0" + }, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/exec-buffer": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/exec-buffer/-/exec-buffer-3.2.0.tgz", + "integrity": "sha512-wsiD+2Tp6BWHoVv3B+5Dcx6E7u5zky+hUwOHjuH2hKSLR3dvRmX8fk8UD8uqQixHs4Wk6eDmiegVrMPjKj7wpA==", + "dev": true, + "optional": true, + "dependencies": { + "execa": "^0.7.0", + "p-finally": "^1.0.0", + "pify": "^3.0.0", + "rimraf": "^2.5.4", + "tempfile": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/exec-buffer/node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "dev": true, + "optional": true, + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "node_modules/exec-buffer/node_modules/execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", + "dev": true, + "optional": true, + "dependencies": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/exec-buffer/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/exec-buffer/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/exec-buffer/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "optional": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/exec-buffer/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "optional": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/exec-buffer/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/exec-buffer/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/exec-buffer/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "optional": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/exec-buffer/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "optional": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/exec-buffer/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/exec-buffer/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "optional": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/exec-buffer/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true, + "optional": true + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/executable": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", + "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", + "dev": true, + "optional": true, + "dependencies": { + "pify": "^2.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/executable/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/expand-brackets/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "dev": true, + "dependencies": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "dev": true + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/ext-list": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", + "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", + "dev": true, + "optional": true, + "dependencies": { + "mime-db": "^1.28.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ext-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", + "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", + "dev": true, + "optional": true, + "dependencies": { + "ext-list": "^2.0.0", + "sort-keys-length": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", + "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "node_modules/fast-xml-parser": { + "version": "3.21.1", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.21.1.tgz", + "integrity": "sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==", + "dev": true, + "optional": true, + "dependencies": { + "strnum": "^1.0.4" + }, + "bin": { + "xml2js": "cli.js" + }, + "funding": { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz", + "integrity": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "dev": true, + "optional": true, + "dependencies": { + "pend": "~1.2.0" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/file-loader/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/file-type": { + "version": "12.4.2", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-12.4.2.tgz", + "integrity": "sha512-UssQP5ZgIOKelfsaB5CuGAL+Y+q7EmONuiwF3N5HAH0t27rvrttgi6Ra9k/+DVaY9UF6+ybxu5pOXLUdA8N7Vg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, + "node_modules/filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/filenamify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz", + "integrity": "sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==", + "dev": true, + "optional": true, + "dependencies": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.0", + "trim-repeated": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-versions": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz", + "integrity": "sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==", + "dev": true, + "optional": true, + "dependencies": { + "semver-regex": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.4.tgz", + "integrity": "sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==", + "dev": true + }, + "node_modules/follow-redirects": { + "version": "1.14.5", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.5.tgz", + "integrity": "sha512-wtphSXy7d4/OR+MvIFbCVBDzZ5520qV8XfPklSN5QtxuMUJZ+b0Wnst1e1lCDocfzuCkHqj8k0FpZqO+UIaKNA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.4.2.tgz", + "integrity": "sha512-EqtzzRdx2mldr0KEydSN9jaNrf419gMpwkloumG6K/S7jtJc9Fl7wMJ+y+o7DLLGMMU/kouYr06agTD/YkxzIQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=10", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "eslint": ">= 6", + "typescript": ">= 2.7", + "vue-template-compiler": "*", + "webpack": ">= 4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + } + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "dev": true, + "optional": true, + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "node_modules/from2/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "optional": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/from2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "optional": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true, + "optional": true + }, + "node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fs-monkey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", + "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", + "dev": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proxy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz", + "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==", + "dev": true, + "optional": true, + "dependencies": { + "npm-conf": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gifsicle": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/gifsicle/-/gifsicle-5.3.0.tgz", + "integrity": "sha512-FJTpgdj1Ow/FITB7SVza5HlzXa+/lqEY0tHQazAJbuAdvyJtkH4wIdsR2K414oaTwRXHFLLF+tYbipj+OpYg+Q==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "dependencies": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0", + "execa": "^5.0.0" + }, + "bin": { + "gifsicle": "cli.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/imagemin/gisicle-bin?sponsor=1" + } + }, + "node_modules/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/globby": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz", + "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/got": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz", + "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==", + "dev": true, + "optional": true, + "dependencies": { + "decompress-response": "^3.2.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "is-plain-obj": "^1.1.0", + "is-retry-allowed": "^1.0.0", + "is-stream": "^1.0.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "p-cancelable": "^0.3.0", + "p-timeout": "^1.1.1", + "safe-buffer": "^5.0.1", + "timed-out": "^4.0.0", + "url-parse-lax": "^1.0.0", + "url-to-options": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/got/node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/got/node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/got/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", + "dev": true + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-ansi/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", + "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/has-symbol-support-x": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", + "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==", + "dev": true, + "optional": true, + "engines": { + "node": "*" + } + }, + "node_modules/has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-to-string-tag-x": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", + "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", + "dev": true, + "optional": true, + "dependencies": { + "has-symbol-support-x": "^1.4.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/history": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", + "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", + "dependencies": { + "@babel/runtime": "^7.1.2", + "loose-envify": "^1.2.0", + "resolve-pathname": "^3.0.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0", + "value-equal": "^1.0.1" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/hpack.js/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", + "dev": true + }, + "node_modules/http-cache-semantics": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", + "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==", + "dev": true, + "optional": true + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", + "dev": true + }, + "node_modules/http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/http-errors/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "node_modules/http-parser-js": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz", + "integrity": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==", + "dev": true + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-middleware": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-1.3.1.tgz", + "integrity": "sha512-13eVVDYS4z79w7f1+NPllJtOQFx/FdUW4btIvVRMaRlUY9VGstAbo5MOhLEuUgZFRHn3x50ufn25zkj/boZnEg==", + "dev": true, + "dependencies": { + "@types/http-proxy": "^1.17.5", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "optional": true + }, + "node_modules/ignore": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.9.tgz", + "integrity": "sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/image-webpack-loader": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/image-webpack-loader/-/image-webpack-loader-8.1.0.tgz", + "integrity": "sha512-bxzMIBNu42KGo6Bc9YMB0QEUt+XuVTl2ZSX3oGAlbsqYOkxkT4TEWvVsnwUkCRCYISJrMCEc/s0y8OYrmEfUOg==", + "dev": true, + "dependencies": { + "imagemin": "^7.0.1", + "loader-utils": "^2.0.0", + "object-assign": "^4.1.1", + "schema-utils": "^2.7.1" + }, + "optionalDependencies": { + "imagemin-gifsicle": "^7.0.0", + "imagemin-mozjpeg": "^9.0.0", + "imagemin-optipng": "^8.0.0", + "imagemin-pngquant": "^9.0.2", + "imagemin-svgo": "^9.0.0", + "imagemin-webp": "^7.0.0" + } + }, + "node_modules/image-webpack-loader/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/imagemin": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/imagemin/-/imagemin-7.0.1.tgz", + "integrity": "sha512-33AmZ+xjZhg2JMCe+vDf6a9mzWukE7l+wAtesjE7KyteqqKjzxv7aVQeWnul1Ve26mWvEQqyPwl0OctNBfSR9w==", + "dev": true, + "dependencies": { + "file-type": "^12.0.0", + "globby": "^10.0.0", + "graceful-fs": "^4.2.2", + "junk": "^3.1.0", + "make-dir": "^3.0.0", + "p-pipe": "^3.0.0", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/imagemin-gifsicle": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/imagemin-gifsicle/-/imagemin-gifsicle-7.0.0.tgz", + "integrity": "sha512-LaP38xhxAwS3W8PFh4y5iQ6feoTSF+dTAXFRUEYQWYst6Xd+9L/iPk34QGgK/VO/objmIlmq9TStGfVY2IcHIA==", + "dev": true, + "optional": true, + "dependencies": { + "execa": "^1.0.0", + "gifsicle": "^5.0.0", + "is-gif": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/imagemin/imagemin-gifsicle?sponsor=1" + } + }, + "node_modules/imagemin-gifsicle/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "optional": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/imagemin-gifsicle/node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "optional": true, + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/imagemin-gifsicle/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "optional": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/imagemin-gifsicle/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/imagemin-gifsicle/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "optional": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/imagemin-gifsicle/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/imagemin-gifsicle/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "optional": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/imagemin-gifsicle/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "optional": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/imagemin-gifsicle/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/imagemin-gifsicle/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "optional": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/imagemin-mozjpeg": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/imagemin-mozjpeg/-/imagemin-mozjpeg-9.0.0.tgz", + "integrity": "sha512-TwOjTzYqCFRgROTWpVSt5UTT0JeCuzF1jswPLKALDd89+PmrJ2PdMMYeDLYZ1fs9cTovI9GJd68mRSnuVt691w==", + "dev": true, + "optional": true, + "dependencies": { + "execa": "^4.0.0", + "is-jpg": "^2.0.0", + "mozjpeg": "^7.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/imagemin-mozjpeg/node_modules/execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "dev": true, + "optional": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/imagemin-mozjpeg/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "optional": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imagemin-mozjpeg/node_modules/human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "dev": true, + "optional": true, + "engines": { + "node": ">=8.12.0" + } + }, + "node_modules/imagemin-optipng": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/imagemin-optipng/-/imagemin-optipng-8.0.0.tgz", + "integrity": "sha512-CUGfhfwqlPjAC0rm8Fy+R2DJDBGjzy2SkfyT09L8rasnF9jSoHFqJ1xxSZWK6HVPZBMhGPMxCTL70OgTHlLF5A==", + "dev": true, + "optional": true, + "dependencies": { + "exec-buffer": "^3.0.0", + "is-png": "^2.0.0", + "optipng-bin": "^7.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/imagemin-pngquant": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/imagemin-pngquant/-/imagemin-pngquant-9.0.2.tgz", + "integrity": "sha512-cj//bKo8+Frd/DM8l6Pg9pws1pnDUjgb7ae++sUX1kUVdv2nrngPykhiUOgFeE0LGY/LmUbCf4egCHC4YUcZSg==", + "dev": true, + "optional": true, + "dependencies": { + "execa": "^4.0.0", + "is-png": "^2.0.0", + "is-stream": "^2.0.0", + "ow": "^0.17.0", + "pngquant-bin": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/imagemin-pngquant/node_modules/execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "dev": true, + "optional": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/imagemin-pngquant/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "optional": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imagemin-pngquant/node_modules/human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "dev": true, + "optional": true, + "engines": { + "node": ">=8.12.0" + } + }, + "node_modules/imagemin-svgo": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/imagemin-svgo/-/imagemin-svgo-9.0.0.tgz", + "integrity": "sha512-uNgXpKHd99C0WODkrJ8OO/3zW3qjgS4pW7hcuII0RcHN3tnKxDjJWcitdVC/TZyfIqSricU8WfrHn26bdSW62g==", + "dev": true, + "optional": true, + "dependencies": { + "is-svg": "^4.2.1", + "svgo": "^2.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/imagemin-svgo?sponsor=1" + } + }, + "node_modules/imagemin-webp": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/imagemin-webp/-/imagemin-webp-7.0.0.tgz", + "integrity": "sha512-JoYjvHNgBLgrQAkeCO7T5iNc8XVpiBmMPZmiXMhalC7K6gwY/3DCEUfNxVPOmNJ+NIJlJFvzcMR9RBxIE74Xxw==", + "dev": true, + "optional": true, + "dependencies": { + "cwebp-bin": "^7.0.1", + "exec-buffer": "^3.2.0", + "is-cwebp-readable": "^3.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/imagemin/node_modules/globby": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", + "integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", + "dev": true, + "dependencies": { + "@types/glob": "^7.1.1", + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "glob": "^7.1.3", + "ignore": "^5.1.1", + "merge2": "^1.2.3", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-lazy": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz", + "integrity": "sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/import-local": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.3.tgz", + "integrity": "sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true, + "optional": true + }, + "node_modules/install": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/install/-/install-0.13.0.tgz", + "integrity": "sha512-zDml/jzr2PKU9I8J/xyZBQn8rPCAY//UOYNmR01XwNwyfhEWObo2SWfSl1+0tm1u6PhxLwDnfsT/6jB7OUxqFA==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "dev": true, + "dependencies": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/interpret": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", + "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/into-stream": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", + "integrity": "sha512-TcdjPibTksa1NQximqep2r17ISRiNE9fwlfbg3F8ANdvP5/yrFTew86VcO//jk4QTaMlbjypPBq76HN2zaKfZQ==", + "dev": true, + "optional": true, + "dependencies": { + "from2": "^2.1.1", + "p-is-promise": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "dev": true + }, + "node_modules/ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/is-callable": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz", + "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-cwebp-readable": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-cwebp-readable/-/is-cwebp-readable-3.0.0.tgz", + "integrity": "sha512-bpELc7/Q1/U5MWHn4NdHI44R3jxk0h9ew9ljzabiRl70/UIjL/ZAqRMb52F5+eke/VC8yTiv4Ewryo1fPWidvA==", + "dev": true, + "optional": true, + "dependencies": { + "file-type": "^10.5.0" + } + }, + "node_modules/is-cwebp-readable/node_modules/file-type": { + "version": "10.11.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz", + "integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==", + "dev": true, + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-gif": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-gif/-/is-gif-3.0.0.tgz", + "integrity": "sha512-IqJ/jlbw5WJSNfwQ/lHEDXF8rxhRgF6ythk2oiEvhpG29F704eX9NO6TvPfMiq9DrbwgcEDnETYNcZDPewQoVw==", + "dev": true, + "optional": true, + "dependencies": { + "file-type": "^10.4.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-gif/node_modules/file-type": { + "version": "10.11.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz", + "integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==", + "dev": true, + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-jpg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz", + "integrity": "sha512-ODlO0ruzhkzD3sdynIainVP5eoOFNN85rxA1+cwwnPe4dKyX0r5+hxNO5XpCrxlHcmb9vkOit9mhRD2JVuimHg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-natural-number": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz", + "integrity": "sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==", + "dev": true, + "optional": true + }, + "node_modules/is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", + "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz", + "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", + "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==", + "dev": true, + "optional": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dev": true, + "dependencies": { + "is-path-inside": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dev": true, + "dependencies": { + "path-is-inside": "^1.0.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-png": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-png/-/is-png-2.0.0.tgz", + "integrity": "sha512-4KPGizaVGj2LK7xwJIz8o5B2ubu1D/vcQsgOGFEDlpcvgZHto4gBnyd0ig7Ws+67ixmwKoNmu0hYnpo6AaKb5g==", + "dev": true, + "optional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz", + "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-svg": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-4.3.2.tgz", + "integrity": "sha512-mM90duy00JGMyjqIVHu9gNTjywdZV+8qNasX8cm/EEYZ53PHDgajvbBwNVvty5dwSAxLUD3p3bdo+7sR/UMrpw==", + "dev": true, + "optional": true, + "dependencies": { + "fast-xml-parser": "^3.19.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.1.tgz", + "integrity": "sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isurl": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", + "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", + "dev": true, + "optional": true, + "dependencies": { + "has-to-string-tag-x": "^1.2.0", + "is-object": "^1.0.1" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/jest-worker": { + "version": "27.3.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.3.1.tgz", + "integrity": "sha512-ks3WCzsiZaOPJl/oMsDjaf0TRiSv7ctNgs0FqRr2nARsovz6AWWy4oLElwcquGSz692DzgZQrCLScPNs5YlC4g==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jquery": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.0.tgz", + "integrity": "sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw==", + "peer": true + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==", + "dev": true, + "optional": true + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, + "node_modules/json3": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", + "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.1.tgz", + "integrity": "sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.3", + "object.assign": "^4.1.2" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/junk": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz", + "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/keyv": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", + "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", + "dev": true, + "optional": true, + "dependencies": { + "json-buffer": "3.0.0" + } + }, + "node_modules/killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", + "dev": true + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/klona": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz", + "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/loader-runner": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz", + "integrity": "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==", + "dev": true, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/loader-utils/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=", + "dev": true + }, + "node_modules/loglevel": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz", + "integrity": "sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/loglevel" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "dev": true, + "optional": true + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.0.tgz", + "integrity": "sha512-o/RfP0J1d03YwsAxyHxAYs2kyJp55AFkMazlFAZFR2I2IXkxiUTXRabJ6RmNNCQ83LAD2jy52Khj0m3OffpNdA==", + "dev": true, + "dependencies": { + "fs-monkey": "1.0.3" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dev": true, + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "node_modules/memory-fs/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/memory-fs/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "dev": true + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "dev": true, + "dependencies": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.51.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz", + "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.34", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz", + "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==", + "dev": true, + "dependencies": { + "mime-db": "1.51.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "dev": true + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/mozjpeg": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/mozjpeg/-/mozjpeg-7.1.1.tgz", + "integrity": "sha512-iIDxWvzhWvLC9mcRJ1uSkiKaj4drF58oCqK2bITm5c2Jt6cJ8qQjSSru2PCaysG+hLIinryj8mgz5ZJzOYTv1A==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "dependencies": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0" + }, + "bin": { + "mozjpeg": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dev": true, + "dependencies": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", + "dev": true + }, + "node_modules/nan": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", + "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", + "dev": true, + "optional": true + }, + "node_modules/nanoid": { + "version": "3.1.30", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.30.tgz", + "integrity": "sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ==", + "dev": true, + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "node_modules/negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node_modules/node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "dev": true, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/node-releases": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz", + "integrity": "sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", + "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", + "dev": true, + "optional": true, + "dependencies": { + "prepend-http": "^2.0.0", + "query-string": "^5.0.1", + "sort-keys": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/normalize-url/node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url/node_modules/prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/normalize-url/node_modules/sort-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", + "integrity": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==", + "dev": true, + "optional": true, + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm": { + "version": "7.24.2", + "resolved": "https://registry.npmjs.org/npm/-/npm-7.24.2.tgz", + "integrity": "sha512-120p116CE8VMMZ+hk8IAb1inCPk4Dj3VZw29/n2g6UI77urJKVYb7FZUDW8hY+EBnfsjI/2yrobBgFyzo7YpVQ==", + "bundleDependencies": [ + "@isaacs/string-locale-compare", + "@npmcli/arborist", + "@npmcli/ci-detect", + "@npmcli/config", + "@npmcli/map-workspaces", + "@npmcli/package-json", + "@npmcli/run-script", + "abbrev", + "ansicolors", + "ansistyles", + "archy", + "cacache", + "chalk", + "chownr", + "cli-columns", + "cli-table3", + "columnify", + "fastest-levenshtein", + "glob", + "graceful-fs", + "hosted-git-info", + "ini", + "init-package-json", + "is-cidr", + "json-parse-even-better-errors", + "libnpmaccess", + "libnpmdiff", + "libnpmexec", + "libnpmfund", + "libnpmhook", + "libnpmorg", + "libnpmpack", + "libnpmpublish", + "libnpmsearch", + "libnpmteam", + "libnpmversion", + "make-fetch-happen", + "minipass", + "minipass-pipeline", + "mkdirp", + "mkdirp-infer-owner", + "ms", + "node-gyp", + "nopt", + "npm-audit-report", + "npm-install-checks", + "npm-package-arg", + "npm-pick-manifest", + "npm-profile", + "npm-registry-fetch", + "npm-user-validate", + "npmlog", + "opener", + "pacote", + "parse-conflict-json", + "qrcode-terminal", + "read", + "read-package-json", + "read-package-json-fast", + "readdir-scoped-modules", + "rimraf", + "semver", + "ssri", + "tar", + "text-table", + "tiny-relative-date", + "treeverse", + "validate-npm-package-name", + "which", + "write-file-atomic" + ], + "dependencies": { + "@isaacs/string-locale-compare": "*", + "@npmcli/arborist": "*", + "@npmcli/ci-detect": "*", + "@npmcli/config": "*", + "@npmcli/map-workspaces": "*", + "@npmcli/package-json": "*", + "@npmcli/run-script": "*", + "abbrev": "*", + "ansicolors": "*", + "ansistyles": "*", + "archy": "*", + "cacache": "*", + "chalk": "*", + "chownr": "*", + "cli-columns": "*", + "cli-table3": "*", + "columnify": "*", + "fastest-levenshtein": "*", + "glob": "*", + "graceful-fs": "*", + "hosted-git-info": "*", + "ini": "*", + "init-package-json": "*", + "is-cidr": "*", + "json-parse-even-better-errors": "*", + "libnpmaccess": "*", + "libnpmdiff": "*", + "libnpmexec": "*", + "libnpmfund": "*", + "libnpmhook": "*", + "libnpmorg": "*", + "libnpmpack": "*", + "libnpmpublish": "*", + "libnpmsearch": "*", + "libnpmteam": "*", + "libnpmversion": "*", + "make-fetch-happen": "*", + "minipass": "*", + "minipass-pipeline": "*", + "mkdirp": "*", + "mkdirp-infer-owner": "*", + "ms": "*", + "node-gyp": "*", + "nopt": "*", + "npm-audit-report": "*", + "npm-install-checks": "*", + "npm-package-arg": "*", + "npm-pick-manifest": "*", + "npm-profile": "*", + "npm-registry-fetch": "*", + "npm-user-validate": "*", + "npmlog": "*", + "opener": "*", + "pacote": "*", + "parse-conflict-json": "*", + "qrcode-terminal": "*", + "read": "*", + "read-package-json": "*", + "read-package-json-fast": "*", + "readdir-scoped-modules": "*", + "rimraf": "*", + "semver": "*", + "ssri": "*", + "tar": "*", + "text-table": "*", + "tiny-relative-date": "*", + "treeverse": "*", + "validate-npm-package-name": "*", + "which": "*", + "write-file-atomic": "*" + }, + "bin": { + "npm": "bin/npm-cli.js", + "npx": "bin/npx-cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", + "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", + "dev": true, + "optional": true, + "dependencies": { + "config-chain": "^1.1.11", + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-conf/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/@gar/promisify": { + "version": "1.1.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/@isaacs/string-locale-compare": { + "version": "1.1.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/@npmcli/arborist": { + "version": "2.9.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@isaacs/string-locale-compare": "^1.0.1", + "@npmcli/installed-package-contents": "^1.0.7", + "@npmcli/map-workspaces": "^1.0.2", + "@npmcli/metavuln-calculator": "^1.1.0", + "@npmcli/move-file": "^1.1.0", + "@npmcli/name-from-folder": "^1.0.1", + "@npmcli/node-gyp": "^1.0.1", + "@npmcli/package-json": "^1.0.1", + "@npmcli/run-script": "^1.8.2", + "bin-links": "^2.2.1", + "cacache": "^15.0.3", + "common-ancestor-path": "^1.0.1", + "json-parse-even-better-errors": "^2.3.1", + "json-stringify-nice": "^1.1.4", + "mkdirp": "^1.0.4", + "mkdirp-infer-owner": "^2.0.0", + "npm-install-checks": "^4.0.0", + "npm-package-arg": "^8.1.5", + "npm-pick-manifest": "^6.1.0", + "npm-registry-fetch": "^11.0.0", + "pacote": "^11.3.5", + "parse-conflict-json": "^1.1.1", + "proc-log": "^1.0.0", + "promise-all-reject-late": "^1.0.0", + "promise-call-limit": "^1.0.1", + "read-package-json-fast": "^2.0.2", + "readdir-scoped-modules": "^1.1.0", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "ssri": "^8.0.1", + "treeverse": "^1.0.4", + "walk-up-path": "^1.0.0" + }, + "bin": { + "arborist": "bin/index.js" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/npm/node_modules/@npmcli/ci-detect": { + "version": "1.3.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/@npmcli/config": { + "version": "2.3.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "ini": "^2.0.0", + "mkdirp-infer-owner": "^2.0.0", + "nopt": "^5.0.0", + "semver": "^7.3.4", + "walk-up-path": "^1.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/@npmcli/disparity-colors": { + "version": "1.0.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "ansi-styles": "^4.3.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/@npmcli/fs": { + "version": "1.0.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + } + }, + "node_modules/npm/node_modules/@npmcli/git": { + "version": "2.1.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/promise-spawn": "^1.3.2", + "lru-cache": "^6.0.0", + "mkdirp": "^1.0.4", + "npm-pick-manifest": "^6.1.1", + "promise-inflight": "^1.0.1", + "promise-retry": "^2.0.1", + "semver": "^7.3.5", + "which": "^2.0.2" + } + }, + "node_modules/npm/node_modules/@npmcli/installed-package-contents": { + "version": "1.0.7", + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-bundled": "^1.1.1", + "npm-normalize-package-bin": "^1.0.1" + }, + "bin": { + "installed-package-contents": "index.js" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/npm/node_modules/@npmcli/map-workspaces": { + "version": "1.0.4", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/name-from-folder": "^1.0.1", + "glob": "^7.1.6", + "minimatch": "^3.0.4", + "read-package-json-fast": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/@npmcli/metavuln-calculator": { + "version": "1.1.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "cacache": "^15.0.5", + "pacote": "^11.1.11", + "semver": "^7.3.2" + } + }, + "node_modules/npm/node_modules/@npmcli/move-file": { + "version": "1.1.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/@npmcli/name-from-folder": { + "version": "1.0.1", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/@npmcli/node-gyp": { + "version": "1.0.2", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/@npmcli/package-json": { + "version": "1.0.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "json-parse-even-better-errors": "^2.3.1" + } + }, + "node_modules/npm/node_modules/@npmcli/promise-spawn": { + "version": "1.3.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "infer-owner": "^1.0.4" + } + }, + "node_modules/npm/node_modules/@npmcli/run-script": { + "version": "1.8.6", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/node-gyp": "^1.0.2", + "@npmcli/promise-spawn": "^1.3.2", + "node-gyp": "^7.1.0", + "read-package-json-fast": "^2.0.1" + } + }, + "node_modules/npm/node_modules/@tootallnate/once": { + "version": "1.1.2", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/npm/node_modules/abbrev": { + "version": "1.1.1", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/agent-base": { + "version": "6.0.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/npm/node_modules/agentkeepalive": { + "version": "4.1.4", + "inBundle": true, + "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "depd": "^1.1.2", + "humanize-ms": "^1.2.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/npm/node_modules/aggregate-error": { + "version": "3.1.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/ajv": { + "version": "6.12.6", + "inBundle": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/npm/node_modules/ansi-regex": { + "version": "2.1.1", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/ansi-styles": { + "version": "4.3.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/npm/node_modules/ansicolors": { + "version": "0.3.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/ansistyles": { + "version": "0.1.3", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/aproba": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/archy": { + "version": "1.0.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/are-we-there-yet": { + "version": "1.1.6", + "inBundle": true, + "license": "ISC", + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/asap": { + "version": "2.0.6", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/asn1": { + "version": "0.2.4", + "inBundle": true, + "license": "MIT", + "dependencies": { + "safer-buffer": "~2.1.0" + } + }, + "node_modules/npm/node_modules/assert-plus": { + "version": "1.0.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/npm/node_modules/asynckit": { + "version": "0.4.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/aws-sign2": { + "version": "0.7.0", + "inBundle": true, + "license": "Apache-2.0", + "engines": { + "node": "*" + } + }, + "node_modules/npm/node_modules/aws4": { + "version": "1.11.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/balanced-match": { + "version": "1.0.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "inBundle": true, + "license": "BSD-3-Clause", + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "node_modules/npm/node_modules/bin-links": { + "version": "2.2.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "cmd-shim": "^4.0.1", + "mkdirp": "^1.0.3", + "npm-normalize-package-bin": "^1.0.0", + "read-cmd-shim": "^2.0.0", + "rimraf": "^3.0.0", + "write-file-atomic": "^3.0.3" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/binary-extensions": { + "version": "2.2.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/brace-expansion": { + "version": "1.1.11", + "inBundle": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/npm/node_modules/builtins": { + "version": "1.0.3", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/cacache": { + "version": "15.3.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/npm/node_modules/caseless": { + "version": "0.12.0", + "inBundle": true, + "license": "Apache-2.0" + }, + "node_modules/npm/node_modules/chalk": { + "version": "4.1.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/npm/node_modules/chownr": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/cidr-regex": { + "version": "3.1.1", + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "ip-regex": "^4.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/clean-stack": { + "version": "2.2.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/npm/node_modules/cli-columns": { + "version": "3.1.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "string-width": "^2.0.0", + "strip-ansi": "^3.0.1" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/npm/node_modules/cli-table3": { + "version": "0.6.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "object-assign": "^4.1.0", + "string-width": "^4.2.0" + }, + "engines": { + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "colors": "^1.1.2" + } + }, + "node_modules/npm/node_modules/cli-table3/node_modules/ansi-regex": { + "version": "5.0.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/cli-table3/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/cli-table3/node_modules/string-width": { + "version": "4.2.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/cli-table3/node_modules/strip-ansi": { + "version": "6.0.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/clone": { + "version": "1.0.4", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/npm/node_modules/cmd-shim": { + "version": "4.1.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "mkdirp-infer-owner": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/code-point-at": { + "version": "1.1.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/color-convert": { + "version": "2.0.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/npm/node_modules/color-name": { + "version": "1.1.4", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/color-support": { + "version": "1.1.3", + "inBundle": true, + "license": "ISC", + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/npm/node_modules/colors": { + "version": "1.4.0", + "inBundle": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/npm/node_modules/columnify": { + "version": "1.5.4", + "inBundle": true, + "license": "MIT", + "dependencies": { + "strip-ansi": "^3.0.0", + "wcwidth": "^1.0.0" + } + }, + "node_modules/npm/node_modules/combined-stream": { + "version": "1.0.8", + "inBundle": true, + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/npm/node_modules/common-ancestor-path": { + "version": "1.0.1", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/concat-map": { + "version": "0.0.1", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/console-control-strings": { + "version": "1.1.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/core-util-is": { + "version": "1.0.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/dashdash": { + "version": "1.14.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/npm/node_modules/debug": { + "version": "4.3.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/npm/node_modules/debug/node_modules/ms": { + "version": "2.1.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/debuglog": { + "version": "1.0.1", + "inBundle": true, + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/npm/node_modules/defaults": { + "version": "1.0.3", + "inBundle": true, + "license": "MIT", + "dependencies": { + "clone": "^1.0.2" + } + }, + "node_modules/npm/node_modules/delayed-stream": { + "version": "1.0.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/npm/node_modules/delegates": { + "version": "1.0.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/depd": { + "version": "1.1.2", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/npm/node_modules/dezalgo": { + "version": "1.0.3", + "inBundle": true, + "license": "ISC", + "dependencies": { + "asap": "^2.0.0", + "wrappy": "1" + } + }, + "node_modules/npm/node_modules/diff": { + "version": "5.0.0", + "inBundle": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/npm/node_modules/ecc-jsbn": { + "version": "0.1.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/npm/node_modules/emoji-regex": { + "version": "8.0.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/encoding": { + "version": "0.1.13", + "inBundle": true, + "license": "MIT", + "optional": true, + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/npm/node_modules/env-paths": { + "version": "2.2.1", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/npm/node_modules/err-code": { + "version": "2.0.3", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/extend": { + "version": "3.0.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/extsprintf": { + "version": "1.3.0", + "engines": [ + "node >=0.6.0" + ], + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/fast-deep-equal": { + "version": "3.1.3", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/fastest-levenshtein": { + "version": "1.0.12", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/forever-agent": { + "version": "0.6.1", + "inBundle": true, + "license": "Apache-2.0", + "engines": { + "node": "*" + } + }, + "node_modules/npm/node_modules/fs-minipass": { + "version": "2.1.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/fs.realpath": { + "version": "1.0.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/function-bind": { + "version": "1.1.1", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/gauge": { + "version": "3.0.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1 || ^2.0.0", + "strip-ansi": "^3.0.1 || ^4.0.0", + "wide-align": "^1.1.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/getpass": { + "version": "0.1.7", + "inBundle": true, + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0" + } + }, + "node_modules/npm/node_modules/glob": { + "version": "7.2.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/graceful-fs": { + "version": "4.2.8", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/har-schema": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">=4" + } + }, + "node_modules/npm/node_modules/har-validator": { + "version": "5.1.5", + "inBundle": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/npm/node_modules/has": { + "version": "1.0.3", + "inBundle": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/npm/node_modules/has-flag": { + "version": "4.0.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/has-unicode": { + "version": "2.0.1", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/hosted-git-info": { + "version": "4.0.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/http-cache-semantics": { + "version": "4.1.0", + "inBundle": true, + "license": "BSD-2-Clause" + }, + "node_modules/npm/node_modules/http-proxy-agent": { + "version": "4.0.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/npm/node_modules/http-signature": { + "version": "1.2.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + } + }, + "node_modules/npm/node_modules/https-proxy-agent": { + "version": "5.0.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/npm/node_modules/humanize-ms": { + "version": "1.2.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "ms": "^2.0.0" + } + }, + "node_modules/npm/node_modules/iconv-lite": { + "version": "0.6.3", + "inBundle": true, + "license": "MIT", + "optional": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/ignore-walk": { + "version": "3.0.4", + "inBundle": true, + "license": "ISC", + "dependencies": { + "minimatch": "^3.0.4" + } + }, + "node_modules/npm/node_modules/imurmurhash": { + "version": "0.1.4", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/npm/node_modules/indent-string": { + "version": "4.0.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/infer-owner": { + "version": "1.0.4", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/inflight": { + "version": "1.0.6", + "inBundle": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/npm/node_modules/inherits": { + "version": "2.0.4", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/ini": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/init-package-json": { + "version": "2.0.5", + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-package-arg": "^8.1.5", + "promzard": "^0.3.0", + "read": "~1.0.1", + "read-package-json": "^4.1.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4", + "validate-npm-package-name": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/ip": { + "version": "1.1.5", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/ip-regex": { + "version": "4.3.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/is-cidr": { + "version": "4.0.2", + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "cidr-regex": "^3.1.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/is-core-module": { + "version": "2.7.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/npm/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/npm/node_modules/is-lambda": { + "version": "1.0.1", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/is-typedarray": { + "version": "1.0.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/isexe": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/isstream": { + "version": "0.1.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/jsbn": { + "version": "0.1.1", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/json-schema": { + "version": "0.2.3", + "inBundle": true + }, + "node_modules/npm/node_modules/json-schema-traverse": { + "version": "0.4.1", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/json-stringify-nice": { + "version": "1.1.4", + "inBundle": true, + "license": "ISC", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/json-stringify-safe": { + "version": "5.0.1", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/jsonparse": { + "version": "1.3.1", + "engines": [ + "node >= 0.2.0" + ], + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/jsprim": { + "version": "1.4.1", + "engines": [ + "node >=0.6.0" + ], + "inBundle": true, + "license": "MIT", + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "node_modules/npm/node_modules/just-diff": { + "version": "3.1.1", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/just-diff-apply": { + "version": "3.0.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/libnpmaccess": { + "version": "4.0.3", + "inBundle": true, + "license": "ISC", + "dependencies": { + "aproba": "^2.0.0", + "minipass": "^3.1.1", + "npm-package-arg": "^8.1.2", + "npm-registry-fetch": "^11.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/libnpmdiff": { + "version": "2.0.4", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/disparity-colors": "^1.0.1", + "@npmcli/installed-package-contents": "^1.0.7", + "binary-extensions": "^2.2.0", + "diff": "^5.0.0", + "minimatch": "^3.0.4", + "npm-package-arg": "^8.1.4", + "pacote": "^11.3.4", + "tar": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/libnpmexec": { + "version": "2.0.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/arborist": "^2.3.0", + "@npmcli/ci-detect": "^1.3.0", + "@npmcli/run-script": "^1.8.4", + "chalk": "^4.1.0", + "mkdirp-infer-owner": "^2.0.0", + "npm-package-arg": "^8.1.2", + "pacote": "^11.3.1", + "proc-log": "^1.0.0", + "read": "^1.0.7", + "read-package-json-fast": "^2.0.2", + "walk-up-path": "^1.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/libnpmfund": { + "version": "1.1.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/arborist": "^2.5.0" + } + }, + "node_modules/npm/node_modules/libnpmhook": { + "version": "6.0.3", + "inBundle": true, + "license": "ISC", + "dependencies": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^11.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/libnpmorg": { + "version": "2.0.3", + "inBundle": true, + "license": "ISC", + "dependencies": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^11.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/libnpmpack": { + "version": "2.0.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/run-script": "^1.8.3", + "npm-package-arg": "^8.1.0", + "pacote": "^11.2.6" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/libnpmpublish": { + "version": "4.0.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "normalize-package-data": "^3.0.2", + "npm-package-arg": "^8.1.2", + "npm-registry-fetch": "^11.0.0", + "semver": "^7.1.3", + "ssri": "^8.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/libnpmsearch": { + "version": "3.1.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-registry-fetch": "^11.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/libnpmteam": { + "version": "2.0.4", + "inBundle": true, + "license": "ISC", + "dependencies": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^11.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/libnpmversion": { + "version": "1.2.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/git": "^2.0.7", + "@npmcli/run-script": "^1.8.4", + "json-parse-even-better-errors": "^2.3.1", + "semver": "^7.3.5", + "stringify-package": "^1.0.1" + } + }, + "node_modules/npm/node_modules/lru-cache": { + "version": "6.0.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/make-fetch-happen": { + "version": "9.1.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "agentkeepalive": "^4.1.3", + "cacache": "^15.2.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^6.0.0", + "minipass": "^3.1.3", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^1.3.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.2", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^6.0.0", + "ssri": "^8.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/npm/node_modules/mime-db": { + "version": "1.49.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/npm/node_modules/mime-types": { + "version": "2.1.32", + "inBundle": true, + "license": "MIT", + "dependencies": { + "mime-db": "1.49.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/npm/node_modules/minimatch": { + "version": "3.0.4", + "inBundle": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/npm/node_modules/minipass": { + "version": "3.1.5", + "inBundle": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/minipass-collect": { + "version": "1.0.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/minipass-fetch": { + "version": "1.4.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "minipass": "^3.1.0", + "minipass-sized": "^1.0.3", + "minizlib": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "optionalDependencies": { + "encoding": "^0.1.12" + } + }, + "node_modules/npm/node_modules/minipass-flush": { + "version": "1.0.5", + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/minipass-json-stream": { + "version": "1.0.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" + } + }, + "node_modules/npm/node_modules/minipass-pipeline": { + "version": "1.2.4", + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/minipass-sized": { + "version": "1.0.3", + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/minizlib": { + "version": "2.1.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/mkdirp": { + "version": "1.0.4", + "inBundle": true, + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/mkdirp-infer-owner": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "chownr": "^2.0.0", + "infer-owner": "^1.0.4", + "mkdirp": "^1.0.3" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/ms": { + "version": "2.1.3", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/mute-stream": { + "version": "0.0.8", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/negotiator": { + "version": "0.6.2", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/npm/node_modules/node-gyp": { + "version": "7.1.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.3", + "nopt": "^5.0.0", + "npmlog": "^4.1.2", + "request": "^2.88.2", + "rimraf": "^3.0.2", + "semver": "^7.3.2", + "tar": "^6.0.2", + "which": "^2.0.2" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" + }, + "engines": { + "node": ">= 10.12.0" + } + }, + "node_modules/npm/node_modules/node-gyp/node_modules/aproba": { + "version": "1.2.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/node-gyp/node_modules/gauge": { + "version": "2.7.4", + "inBundle": true, + "license": "ISC", + "dependencies": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + } + }, + "node_modules/npm/node_modules/node-gyp/node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/node-gyp/node_modules/npmlog": { + "version": "4.1.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "node_modules/npm/node_modules/node-gyp/node_modules/string-width": { + "version": "1.0.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/nopt": { + "version": "5.0.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/npm/node_modules/normalize-package-data": { + "version": "3.0.3", + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/npm-audit-report": { + "version": "2.1.5", + "inBundle": true, + "license": "ISC", + "dependencies": { + "chalk": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/npm-bundled": { + "version": "1.1.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-normalize-package-bin": "^1.0.1" + } + }, + "node_modules/npm/node_modules/npm-install-checks": { + "version": "4.0.0", + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "semver": "^7.1.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/npm-normalize-package-bin": { + "version": "1.0.1", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/npm-package-arg": { + "version": "8.1.5", + "inBundle": true, + "license": "ISC", + "dependencies": { + "hosted-git-info": "^4.0.1", + "semver": "^7.3.4", + "validate-npm-package-name": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/npm-packlist": { + "version": "2.2.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.6", + "ignore-walk": "^3.0.3", + "npm-bundled": "^1.1.1", + "npm-normalize-package-bin": "^1.0.1" + }, + "bin": { + "npm-packlist": "bin/index.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/npm-pick-manifest": { + "version": "6.1.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-install-checks": "^4.0.0", + "npm-normalize-package-bin": "^1.0.1", + "npm-package-arg": "^8.1.2", + "semver": "^7.3.4" + } + }, + "node_modules/npm/node_modules/npm-profile": { + "version": "5.0.4", + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-registry-fetch": "^11.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/npm-registry-fetch": { + "version": "11.0.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "make-fetch-happen": "^9.0.1", + "minipass": "^3.1.3", + "minipass-fetch": "^1.3.0", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.0.0", + "npm-package-arg": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/npm-user-validate": { + "version": "1.0.1", + "inBundle": true, + "license": "BSD-2-Clause" + }, + "node_modules/npm/node_modules/npmlog": { + "version": "5.0.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" + } + }, + "node_modules/npm/node_modules/npmlog/node_modules/are-we-there-yet": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/number-is-nan": { + "version": "1.0.1", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/oauth-sign": { + "version": "0.9.0", + "inBundle": true, + "license": "Apache-2.0", + "engines": { + "node": "*" + } + }, + "node_modules/npm/node_modules/object-assign": { + "version": "4.1.1", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/once": { + "version": "1.4.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/npm/node_modules/opener": { + "version": "1.5.2", + "inBundle": true, + "license": "(WTFPL OR MIT)", + "bin": { + "opener": "bin/opener-bin.js" + } + }, + "node_modules/npm/node_modules/p-map": { + "version": "4.0.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm/node_modules/pacote": { + "version": "11.3.5", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/git": "^2.1.0", + "@npmcli/installed-package-contents": "^1.0.6", + "@npmcli/promise-spawn": "^1.2.0", + "@npmcli/run-script": "^1.8.2", + "cacache": "^15.0.5", + "chownr": "^2.0.0", + "fs-minipass": "^2.1.0", + "infer-owner": "^1.0.4", + "minipass": "^3.1.3", + "mkdirp": "^1.0.3", + "npm-package-arg": "^8.0.1", + "npm-packlist": "^2.1.4", + "npm-pick-manifest": "^6.0.0", + "npm-registry-fetch": "^11.0.0", + "promise-retry": "^2.0.1", + "read-package-json-fast": "^2.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.1.0" + }, + "bin": { + "pacote": "lib/bin.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/parse-conflict-json": { + "version": "1.1.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "json-parse-even-better-errors": "^2.3.0", + "just-diff": "^3.0.1", + "just-diff-apply": "^3.0.0" + } + }, + "node_modules/npm/node_modules/path-is-absolute": { + "version": "1.0.1", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/performance-now": { + "version": "2.1.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/proc-log": { + "version": "1.0.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/promise-all-reject-late": { + "version": "1.0.1", + "inBundle": true, + "license": "ISC", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/promise-call-limit": { + "version": "1.0.1", + "inBundle": true, + "license": "ISC", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/promise-inflight": { + "version": "1.0.1", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/promise-retry": { + "version": "2.0.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/promzard": { + "version": "0.3.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "read": "1" + } + }, + "node_modules/npm/node_modules/psl": { + "version": "1.8.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/punycode": { + "version": "2.1.1", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/npm/node_modules/qrcode-terminal": { + "version": "0.12.0", + "inBundle": true, + "bin": { + "qrcode-terminal": "bin/qrcode-terminal.js" + } + }, + "node_modules/npm/node_modules/qs": { + "version": "6.5.2", + "inBundle": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/npm/node_modules/read": { + "version": "1.0.7", + "inBundle": true, + "license": "ISC", + "dependencies": { + "mute-stream": "~0.0.4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/npm/node_modules/read-cmd-shim": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/read-package-json": { + "version": "4.1.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.1", + "json-parse-even-better-errors": "^2.3.0", + "normalize-package-data": "^3.0.0", + "npm-normalize-package-bin": "^1.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/read-package-json-fast": { + "version": "2.0.3", + "inBundle": true, + "license": "ISC", + "dependencies": { + "json-parse-even-better-errors": "^2.3.0", + "npm-normalize-package-bin": "^1.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/readable-stream": { + "version": "3.6.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/npm/node_modules/readdir-scoped-modules": { + "version": "1.1.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "debuglog": "^1.0.1", + "dezalgo": "^1.0.0", + "graceful-fs": "^4.1.2", + "once": "^1.3.0" + } + }, + "node_modules/npm/node_modules/request": { + "version": "2.88.2", + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/npm/node_modules/request/node_modules/form-data": { + "version": "2.3.3", + "inBundle": true, + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/npm/node_modules/request/node_modules/tough-cookie": { + "version": "2.5.0", + "inBundle": true, + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/npm/node_modules/retry": { + "version": "0.12.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/npm/node_modules/rimraf": { + "version": "3.0.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/safe-buffer": { + "version": "5.2.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/safer-buffer": { + "version": "2.1.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/semver": { + "version": "7.3.5", + "inBundle": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/set-blocking": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/signal-exit": { + "version": "3.0.3", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/smart-buffer": { + "version": "4.2.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/npm/node_modules/socks": { + "version": "2.6.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "ip": "^1.1.5", + "smart-buffer": "^4.1.0" + }, + "engines": { + "node": ">= 10.13.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/npm/node_modules/socks-proxy-agent": { + "version": "6.1.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "agent-base": "^6.0.2", + "debug": "^4.3.1", + "socks": "^2.6.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/npm/node_modules/spdx-correct": { + "version": "3.1.1", + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/npm/node_modules/spdx-exceptions": { + "version": "2.3.0", + "inBundle": true, + "license": "CC-BY-3.0" + }, + "node_modules/npm/node_modules/spdx-expression-parse": { + "version": "3.0.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/npm/node_modules/spdx-license-ids": { + "version": "3.0.10", + "inBundle": true, + "license": "CC0-1.0" + }, + "node_modules/npm/node_modules/sshpk": { + "version": "1.16.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/ssri": { + "version": "8.0.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/string_decoder": { + "version": "1.3.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/npm/node_modules/string-width": { + "version": "2.1.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm/node_modules/string-width/node_modules/ansi-regex": { + "version": "3.0.0", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/npm/node_modules/string-width/node_modules/strip-ansi": { + "version": "4.0.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm/node_modules/stringify-package": { + "version": "1.0.1", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/strip-ansi": { + "version": "3.0.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/supports-color": { + "version": "7.2.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/tar": { + "version": "6.1.11", + "inBundle": true, + "license": "ISC", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/npm/node_modules/text-table": { + "version": "0.2.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/tiny-relative-date": { + "version": "1.3.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/treeverse": { + "version": "1.0.4", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/tunnel-agent": { + "version": "0.6.0", + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/npm/node_modules/tweetnacl": { + "version": "0.14.5", + "inBundle": true, + "license": "Unlicense" + }, + "node_modules/npm/node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "inBundle": true, + "license": "MIT", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/npm/node_modules/unique-filename": { + "version": "1.1.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "node_modules/npm/node_modules/unique-slug": { + "version": "2.0.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, + "node_modules/npm/node_modules/uri-js": { + "version": "4.4.1", + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/npm/node_modules/util-deprecate": { + "version": "1.0.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/uuid": { + "version": "3.4.0", + "inBundle": true, + "license": "MIT", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/npm/node_modules/validate-npm-package-license": { + "version": "3.0.4", + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/npm/node_modules/validate-npm-package-name": { + "version": "3.0.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "builtins": "^1.0.3" + } + }, + "node_modules/npm/node_modules/verror": { + "version": "1.10.0", + "engines": [ + "node >=0.6.0" + ], + "inBundle": true, + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "node_modules/npm/node_modules/walk-up-path": { + "version": "1.0.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/wcwidth": { + "version": "1.0.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/npm/node_modules/which": { + "version": "2.0.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/wide-align": { + "version": "1.1.3", + "inBundle": true, + "license": "ISC", + "dependencies": { + "string-width": "^1.0.2 || 2" + } + }, + "node_modules/npm/node_modules/wrappy": { + "version": "1.0.2", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/write-file-atomic": { + "version": "3.0.3", + "inBundle": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/npm/node_modules/yallist": { + "version": "4.0.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "optional": true, + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", + "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", + "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz", + "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.hasown": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.0.tgz", + "integrity": "sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.values": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", + "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dev": true, + "dependencies": { + "is-wsl": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/optipng-bin": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/optipng-bin/-/optipng-bin-7.0.1.tgz", + "integrity": "sha512-W99mpdW7Nt2PpFiaO+74pkht7KEqkXkeRomdWXfEz3SALZ6hns81y/pm1dsGZ6ItUIfchiNIP6ORDr1zETU1jA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "dependencies": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0" + }, + "bin": { + "optipng": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/original": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", + "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", + "dev": true, + "dependencies": { + "url-parse": "^1.4.3" + } + }, + "node_modules/os-filter-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", + "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", + "dev": true, + "optional": true, + "dependencies": { + "arch": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ow": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/ow/-/ow-0.17.0.tgz", + "integrity": "sha512-i3keDzDQP5lWIe4oODyDFey1qVrq2hXKTuTH2VpqwpYtzPiKZt2ziRI4NBQmgW40AnV5Euz17OyWweCb+bNEQA==", + "dev": true, + "optional": true, + "dependencies": { + "type-fest": "^0.11.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ow/node_modules/type-fest": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz", + "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-cancelable": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", + "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-event": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-1.3.0.tgz", + "integrity": "sha512-hV1zbA7gwqPVFcapfeATaNjQ3J0NuzorHPyG8GPL9g/Y/TplWVBVoCKCXL6Ej2zscrCEv195QNWJXuBH6XZuzA==", + "dev": true, + "optional": true, + "dependencies": { + "p-timeout": "^1.1.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-is-promise": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", + "integrity": "sha512-zL7VE4JVS2IFSkR2GQKDSPEVxkoH43/p7oEnwpdCndKYJO0HVeRB7fA8TJwuLOTBREtK0ea8eHaxdwcpob5dmg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-map-series": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz", + "integrity": "sha512-4k9LlvY6Bo/1FcIdV33wqZQES0Py+iKISU9Uc8p8AjWoZPnFKMpVIVD3s0EYn4jzLh1I+WeUZkJ0Yoa4Qfw3Kg==", + "dev": true, + "optional": true, + "dependencies": { + "p-reduce": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-pipe": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-pipe/-/p-pipe-3.1.0.tgz", + "integrity": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-reduce": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", + "integrity": "sha512-3Tx1T3oM1xO/Y8Gj0sWyE78EIJZ+t+aEmXUdvQgvGmSMri7aPTHoovbXEreWKkL5j21Er60XAWLTzKbAKYOujQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dev": true, + "dependencies": { + "retry": "^0.12.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-timeout": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz", + "integrity": "sha512-gb0ryzr+K2qFqFv6qi3khoeqMZF/+ajxQipEF6NteZVnvz9tzdsfAVj3lYtn1gAXvH5lfLwfxEII799gt/mRIA==", + "dev": true, + "optional": true, + "dependencies": { + "p-finally": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "dev": true + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "dev": true + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "dev": true + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "dev": true, + "optional": true + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", + "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pngquant-bin": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/pngquant-bin/-/pngquant-bin-6.0.1.tgz", + "integrity": "sha512-Q3PUyolfktf+hYio6wsg3SanQzEU/v8aICg/WpzxXcuCMRb7H2Q81okfpcEztbMvw25ILjd3a87doj2N9kvbpQ==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "dependencies": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.1", + "execa": "^4.0.0" + }, + "bin": { + "pngquant": "cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/pngquant-bin/node_modules/execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "dev": true, + "optional": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/pngquant-bin/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "optional": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pngquant-bin/node_modules/human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "dev": true, + "optional": true, + "engines": { + "node": ">=8.12.0" + } + }, + "node_modules/popper.js": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", + "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==", + "deprecated": "You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1", + "peer": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "dev": true, + "dependencies": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.1.tgz", + "integrity": "sha512-WqLs/TTzXdG+/A4ZOOK9WDZiikrRaiA+eoEb/jz2DT9KUhMNHgP7yKPO8vwi62ZCsb703Gwb7BMZwDzI54Y2Ag==", + "dev": true, + "dependencies": { + "nanoid": "^3.1.30", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz", + "integrity": "sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==", + "dev": true + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/prop-types": { + "version": "15.7.2", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", + "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.8.1" + } + }, + "node_modules/prop-types-extra": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz", + "integrity": "sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==", + "dependencies": { + "react-is": "^16.3.2", + "warning": "^4.0.0" + }, + "peerDependencies": { + "react": ">=0.14.0" + } + }, + "node_modules/proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", + "dev": true, + "optional": true + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "dev": true, + "optional": true + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/query-string": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", + "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "dev": true, + "optional": true, + "dependencies": { + "decode-uri-component": "^0.2.0", + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", + "dev": true, + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "dev": true, + "dependencies": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/react": { + "version": "16.14.0", + "resolved": "https://registry.npmjs.org/react/-/react-16.14.0.tgz", + "integrity": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==", + "peer": true, + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-bootstrap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.0.2.tgz", + "integrity": "sha512-QuMqJ+WJmd6dUyOys6OF3nr6T/FjUVAoEMbSjsFrwVufJtvMox0SU1Dvz/cDID+Dl6Rz2RLcJzyqkdl+DEK2Gg==", + "dependencies": { + "@babel/runtime": "^7.14.0", + "@restart/context": "^2.1.4", + "@restart/hooks": "^0.3.26", + "@restart/ui": "^0.2.3", + "@types/invariant": "^2.2.33", + "@types/prop-types": "^15.7.3", + "@types/react": ">=16.14.8", + "@types/react-transition-group": "^4.4.1", + "@types/warning": "^3.0.0", + "classnames": "^2.3.1", + "dom-helpers": "^5.2.1", + "invariant": "^2.2.4", + "prop-types": "^15.7.2", + "prop-types-extra": "^1.1.0", + "react-transition-group": "^4.4.1", + "uncontrollable": "^7.2.1", + "warning": "^4.0.3" + }, + "peerDependencies": { + "react": ">=16.14.0", + "react-dom": ">=16.14.0" + } + }, + "node_modules/react-chartjs-2": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/react-chartjs-2/-/react-chartjs-2-4.3.1.tgz", + "integrity": "sha512-5i3mjP6tU7QSn0jvb8I4hudTzHJqS8l00ORJnVwI2sYu0ihpj83Lv2YzfxunfxTZkscKvZu2F2w9LkwNBhj6xA==", + "peerDependencies": { + "chart.js": "^3.5.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-dom": { + "version": "16.14.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.14.0.tgz", + "integrity": "sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==", + "peer": true, + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2", + "scheduler": "^0.19.1" + }, + "peerDependencies": { + "react": "^16.14.0" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "node_modules/react-router": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.3.4.tgz", + "integrity": "sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==", + "dependencies": { + "@babel/runtime": "^7.12.13", + "history": "^4.9.0", + "hoist-non-react-statics": "^3.1.0", + "loose-envify": "^1.3.1", + "path-to-regexp": "^1.7.0", + "prop-types": "^15.6.2", + "react-is": "^16.6.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + }, + "peerDependencies": { + "react": ">=15" + } + }, + "node_modules/react-router-dom": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.4.tgz", + "integrity": "sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==", + "dependencies": { + "@babel/runtime": "^7.12.13", + "history": "^4.9.0", + "loose-envify": "^1.3.1", + "prop-types": "^15.6.2", + "react-router": "5.3.4", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + }, + "peerDependencies": { + "react": ">=15" + } + }, + "node_modules/react-router/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" + }, + "node_modules/react-router/node_modules/path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "dependencies": { + "isarray": "0.0.1" + } + }, + "node_modules/react-transition-group": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.2.tgz", + "integrity": "sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, + "node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/rechoir": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", + "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", + "dev": true, + "dependencies": { + "resolve": "^1.9.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "node_modules/regenerate-unicode-properties": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz", + "integrity": "sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + }, + "node_modules/regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", + "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", + "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/regexpu-core": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.8.0.tgz", + "integrity": "sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^9.0.0", + "regjsgen": "^0.5.2", + "regjsparser": "^0.7.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsgen": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", + "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==", + "dev": true + }, + "node_modules/regjsparser": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.7.0.tgz", + "integrity": "sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==", + "dev": true, + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + }, + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "dev": true + }, + "node_modules/resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "dev": true, + "dependencies": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-cwd/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-pathname": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz", + "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "deprecated": "https://github.com/lydell/resolve-url#deprecated", + "dev": true + }, + "node_modules/responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", + "dev": true, + "optional": true, + "dependencies": { + "lowercase-keys": "^1.0.0" + } + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/sass": { + "version": "1.43.5", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.43.5.tgz", + "integrity": "sha512-WuNm+eAryMgQluL7Mbq9M4EruyGGMyal7Lu58FfnRMVWxgUzIvI7aSn60iNt3kn5yZBMR7G84fAGDcwqOF5JOg==", + "dev": true, + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/sass-loader": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-11.1.1.tgz", + "integrity": "sha512-fOCp/zLmj1V1WHDZbUbPgrZhA7HKXHEqkslzB+05U5K9SbSbcmH91C7QLW31AsXikxUMaxXRhhcqWZAxUMLDyA==", + "dev": true, + "dependencies": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0", + "sass": "^1.3.0", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/scheduler": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz", + "integrity": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==", + "peer": true, + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/seek-bzip": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz", + "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==", + "dev": true, + "optional": true, + "dependencies": { + "commander": "^2.8.1" + }, + "bin": { + "seek-bunzip": "bin/seek-bunzip", + "seek-table": "bin/seek-bzip-table" + } + }, + "node_modules/seek-bzip/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true, + "optional": true + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=", + "dev": true + }, + "node_modules/selfsigned": { + "version": "1.10.11", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.11.tgz", + "integrity": "sha512-aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA==", + "dev": true, + "dependencies": { + "node-forge": "^0.10.0" + } + }, + "node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/semver-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz", + "integrity": "sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==", + "dev": true, + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/semver-truncate": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz", + "integrity": "sha512-V1fGg9i4CL3qesB6U0L6XAm4xOJiHmt4QAacazumuasc03BvtFGIMCduv01JWQ69Nv+JST9TqhSCiJoxoY031w==", + "dev": true, + "optional": true, + "dependencies": { + "semver": "^5.3.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/semver-truncate/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "optional": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "dev": true + }, + "node_modules/serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "dev": true, + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "node_modules/serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "dev": true, + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", + "dev": true + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", + "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/slice-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/slice-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/snapdragon/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/sockjs": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz", + "integrity": "sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==", + "dev": true, + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^3.4.0", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/sockjs-client": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.2.tgz", + "integrity": "sha512-ZzRxPBISQE7RpzlH4tKJMQbHM9pabHluk0WBaxAQ+wm/UieeBVBou0p4wVnSQGN9QmpAZygQ0cDIypWuqOFmFQ==", + "dev": true, + "dependencies": { + "debug": "^3.2.6", + "eventsource": "^1.0.7", + "faye-websocket": "^0.11.3", + "inherits": "^2.0.4", + "json3": "^3.3.3", + "url-parse": "^1.5.3" + } + }, + "node_modules/sockjs-client/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", + "dev": true, + "optional": true, + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sort-keys-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", + "integrity": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==", + "dev": true, + "optional": true, + "dependencies": { + "sort-keys": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sort-keys/node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.1.tgz", + "integrity": "sha512-4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dev": true, + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "dev": true + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility", + "dev": true, + "optional": true + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz", + "integrity": "sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.3.1", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-dirs": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz", + "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==", + "dev": true, + "optional": true, + "dependencies": { + "is-natural-number": "^4.0.1" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-outer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "dev": true, + "optional": true, + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strnum": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", + "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==", + "dev": true, + "optional": true + }, + "node_modules/style-loader": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-2.0.0.tgz", + "integrity": "sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/style-loader/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/style-loader/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "dev": true, + "optional": true, + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/table": { + "version": "6.7.3", + "resolved": "https://registry.npmjs.org/table/-/table-6.7.3.tgz", + "integrity": "sha512-5DkIxeA7XERBqMwJq0aHZOdMadBx4e6eDoFRuyT5VR82J0Ycg2DwM6GfA/EQAhJ+toRTaS1lIdSQCqgrmhPnlw==", + "dev": true, + "dependencies": { + "ajv": "^8.0.1", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/table/node_modules/ajv": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.8.2.tgz", + "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/table/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/tar-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", + "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", + "dev": true, + "optional": true, + "dependencies": { + "bl": "^1.0.0", + "buffer-alloc": "^1.2.0", + "end-of-stream": "^1.0.0", + "fs-constants": "^1.0.0", + "readable-stream": "^2.3.0", + "to-buffer": "^1.1.1", + "xtend": "^4.0.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/tar-stream/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "optional": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/tar-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "optional": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/temp-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/tempfile": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz", + "integrity": "sha512-ZOn6nJUgvgC09+doCEF3oB+r3ag7kUvlsXEGX069QRD60p+P3uP7XG9N2/at+EyIRGSN//ZY3LyEotA1YpmjuA==", + "dev": true, + "optional": true, + "dependencies": { + "temp-dir": "^1.0.0", + "uuid": "^3.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.2.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.2.5.tgz", + "integrity": "sha512-3luOVHku5l0QBeYS8r4CdHYWEGMmIj3H1U64jgkdZzECcSOJAyJ9TjuqcQZvw1Y+4AOBN9SeYJPJmFn2cM4/2g==", + "dev": true, + "dependencies": { + "jest-worker": "^27.0.6", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1", + "terser": "^5.7.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/acorn": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz", + "integrity": "sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw==", + "dev": true, + "optional": true, + "peer": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/terser-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/terser": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.10.0.tgz", + "integrity": "sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==", + "dev": true, + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "acorn": "^8.5.0" + }, + "peerDependenciesMeta": { + "acorn": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/terser/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true, + "optional": true + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "node_modules/timed-out": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/tiny-invariant": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", + "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==" + }, + "node_modules/tiny-warning": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + }, + "node_modules/to-buffer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", + "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==", + "dev": true, + "optional": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/to-regex/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/trim-repeated": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==", + "dev": true, + "optional": true, + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ts-node": { + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-9.1.1.tgz", + "integrity": "sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==", + "dev": true, + "dependencies": { + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "source-map-support": "^0.5.17", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "typescript": ">=2.7" + } + }, + "node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "dev": true, + "optional": true, + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typescript": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.2.tgz", + "integrity": "sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", + "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unbzip2-stream": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "dev": true, + "optional": true, + "dependencies": { + "buffer": "^5.2.1", + "through": "^2.3.8" + } + }, + "node_modules/uncontrollable": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.2.1.tgz", + "integrity": "sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==", + "dependencies": { + "@babel/runtime": "^7.6.3", + "@types/react": ">=16.9.11", + "invariant": "^2.2.4", + "react-lifecycles-compat": "^3.0.4" + }, + "peerDependencies": { + "react": ">=15.0.0" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", + "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz", + "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true, + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "deprecated": "Please see https://github.com/lydell/urix#deprecated", + "dev": true + }, + "node_modules/url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dev": true, + "dependencies": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "node_modules/url-loader": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", + "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "mime-types": "^2.1.27", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "file-loader": "*", + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "file-loader": { + "optional": true + } + } + }, + "node_modules/url-loader/node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/url-loader/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/url-parse": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.3.tgz", + "integrity": "sha512-IIORyIQD9rvj0A4CLWsHkBBJuNqWpFQe224b6j9t/ABmquIS0qDU2pY6kl6AuOrL5OkCXHMCFNe1jBcuAggjvQ==", + "dev": true, + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/url-parse-lax": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", + "integrity": "sha512-BVA4lR5PIviy2PMseNd2jbFQ+jwSwQGdJejf5ctd1rEXt0Ypd7yanUK9+lYechVlN5VaTJGsu2U/3MDDu6KgBA==", + "dev": true, + "optional": true, + "dependencies": { + "prepend-http": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/url-to-options": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", + "integrity": "sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==", + "dev": true, + "optional": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/url/node_modules/punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "dev": true + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "dev": true, + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, + "node_modules/value-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz", + "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/warning": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/watchpack": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.3.0.tgz", + "integrity": "sha512-MnN0Q1OsvB/GGHETrFeZPQaOelWh/7O+EiFlj8sM9GPjtQkis7k01aAxrg/18kTfoIVcLL+haEVFlXDaSRwKRw==", + "dev": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/webpack": { + "version": "5.64.4", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.64.4.tgz", + "integrity": "sha512-LWhqfKjCLoYJLKJY8wk2C3h77i8VyHowG3qYNZiIqD6D0ZS40439S/KVuc/PY48jp2yQmy0mhMknq8cys4jFMw==", + "dev": true, + "dependencies": { + "@types/eslint-scope": "^3.7.0", + "@types/estree": "^0.0.50", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.4.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.8.3", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.4", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.3.0", + "webpack-sources": "^3.2.2" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-cli": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.1.tgz", + "integrity": "sha512-JYRFVuyFpzDxMDB+v/nanUdQYcZtqFPGzmlW4s+UkPMFhSpfRNmf1z4AwYcHJVdvEFAM7FFCQdNTpsBYhDLusQ==", + "dev": true, + "dependencies": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^1.1.0", + "@webpack-cli/info": "^1.4.0", + "@webpack-cli/serve": "^1.6.0", + "colorette": "^2.0.14", + "commander": "^7.0.0", + "execa": "^5.0.0", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^2.2.0", + "rechoir": "^0.7.0", + "webpack-merge": "^5.7.3" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "peerDependencies": { + "webpack": "4.x.x || 5.x.x" + }, + "peerDependenciesMeta": { + "@webpack-cli/generators": { + "optional": true + }, + "@webpack-cli/migrate": { + "optional": true + }, + "webpack-bundle-analyzer": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "dev": true, + "dependencies": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/webpack-dev-server": { + "version": "3.11.3", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.3.tgz", + "integrity": "sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==", + "dev": true, + "dependencies": { + "ansi-html-community": "0.0.8", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 6.11.5" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/webpack-dev-server/node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.", + "dev": true, + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/webpack-dev-server/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/webpack-dev-server/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/webpack-dev-server/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "dev": true, + "dependencies": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/webpack-dev-server/node_modules/import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, + "dependencies": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true, + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/micromatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/webpack-dev-server/node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/webpack-dev-server/node_modules/resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "dev": true, + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/webpack-dev-server/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/webpack-dev-server/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "dev": true, + "dependencies": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/webpack-log/node_modules/ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-merge": { + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", + "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", + "dev": true, + "dependencies": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.2.tgz", + "integrity": "sha512-cp5qdmHnu5T8wRg2G3vZZHoJPN14aqQ89SyQ11NpGH5zEMDCclt49rzo+MaRazk7/UeILhAI+/sEtcM+7Fr0nw==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/acorn": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz", + "integrity": "sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/webpack/node_modules/acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "dev": true, + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack/node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true + }, + "node_modules/wildcard": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", + "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", + "dev": true + }, + "node_modules/word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrap-ansi/node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/wrap-ansi/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "node_modules/ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "dev": true, + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "dependencies": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "node_modules/yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "node_modules/yargs/node_modules/ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "node_modules/yargs/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/yargs/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/yargs/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "dev": true, + "optional": true, + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true, + "engines": { + "node": ">=6" + } + } + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz", + "integrity": "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==", + "dev": true, + "requires": { + "@babel/highlight": "^7.16.0" + } + }, + "@babel/compat-data": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.4.tgz", + "integrity": "sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==", + "dev": true + }, + "@babel/core": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", + "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.16.0", + "@babel/generator": "^7.16.0", + "@babel/helper-compilation-targets": "^7.16.0", + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helpers": "^7.16.0", + "@babel/parser": "^7.16.0", + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + } + }, + "@babel/generator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.0.tgz", + "integrity": "sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz", + "integrity": "sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.0.tgz", + "integrity": "sha512-9KuleLT0e77wFUku6TUkqZzCEymBdtuQQ27MhEKzf9UOOJu3cYj98kyaDAzxpC7lV6DGiZFuC8XqDsq8/Kl6aQ==", + "dev": true, + "requires": { + "@babel/helper-explode-assignable-expression": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz", + "integrity": "sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.16.0", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.17.5", + "semver": "^6.3.0" + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.0.tgz", + "integrity": "sha512-XLwWvqEaq19zFlF5PTgOod4bUA+XbkR4WLQBct1bkzmxJGB0ZEJaoKF4c8cgH9oBtCDuYJ8BP5NB9uFiEgO5QA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-member-expression-to-functions": "^7.16.0", + "@babel/helper-optimise-call-expression": "^7.16.0", + "@babel/helper-replace-supers": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0" + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.0.tgz", + "integrity": "sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "regexpu-core": "^4.7.1" + } + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.0.tgz", + "integrity": "sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + } + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.0.tgz", + "integrity": "sha512-Hk2SLxC9ZbcOhLpg/yMznzJ11W++lg5GMbxt1ev6TXUiJB0N42KPC+7w8a+eWGuqDnUYuwStJoZHM7RgmIOaGQ==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-function-name": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz", + "integrity": "sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog==", + "dev": true, + "requires": { + "@babel/helper-get-function-arity": "^7.16.0", + "@babel/template": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz", + "integrity": "sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz", + "integrity": "sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.0.tgz", + "integrity": "sha512-bsjlBFPuWT6IWhl28EdrQ+gTvSvj5tqVP5Xeftp07SEuz5pLnsXZuDkDD3Rfcxy0IsHmbZ+7B2/9SHzxO0T+sQ==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-module-imports": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz", + "integrity": "sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-module-transforms": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.0.tgz", + "integrity": "sha512-My4cr9ATcaBbmaEa8M0dZNA74cfI6gitvUAskgDtAFmAqyFKDSHQo5YstxPbN+lzHl2D9l/YOEFqb2mtUh4gfA==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.16.0", + "@babel/helper-replace-supers": "^7.16.0", + "@babel/helper-simple-access": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0", + "@babel/helper-validator-identifier": "^7.15.7", + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz", + "integrity": "sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", + "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==", + "dev": true + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.4.tgz", + "integrity": "sha512-vGERmmhR+s7eH5Y/cp8PCVzj4XEjerq8jooMfxFdA5xVtAk9Sh4AQsrWgiErUEBjtGrBtOFKDUcWQFW4/dFwMA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-wrap-function": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-replace-supers": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.0.tgz", + "integrity": "sha512-TQxuQfSCdoha7cpRNJvfaYxxxzmbxXw/+6cS7V02eeDYyhxderSoMVALvwupA54/pZcOTtVeJ0xccp1nGWladA==", + "dev": true, + "requires": { + "@babel/helper-member-expression-to-functions": "^7.16.0", + "@babel/helper-optimise-call-expression": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-simple-access": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz", + "integrity": "sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz", + "integrity": "sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz", + "integrity": "sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==", + "dev": true, + "requires": { + "@babel/types": "^7.16.0" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.15.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz", + "integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", + "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==", + "dev": true + }, + "@babel/helper-wrap-function": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.0.tgz", + "integrity": "sha512-VVMGzYY3vkWgCJML+qVLvGIam902mJW0FvT7Avj1zEe0Gn7D93aWdLblYARTxEw+6DhZmtzhBM2zv0ekE5zg1g==", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.16.0", + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/helpers": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.3.tgz", + "integrity": "sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w==", + "dev": true, + "requires": { + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.3", + "@babel/types": "^7.16.0" + } + }, + "@babel/highlight": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz", + "integrity": "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.15.7", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "@babel/parser": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.4.tgz", + "integrity": "sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==", + "dev": true + }, + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.16.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2.tgz", + "integrity": "sha512-h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0.tgz", + "integrity": "sha512-4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0" + } + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.4.tgz", + "integrity": "sha512-/CUekqaAaZCQHleSK/9HajvcD/zdnJiKRiuUFq8ITE+0HsPzquf53cpFiqAwl/UfmJbR6n5uGPQSPdrmKOvHHg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.16.4", + "@babel/plugin-syntax-async-generators": "^7.8.4" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.0.tgz", + "integrity": "sha512-mCF3HcuZSY9Fcx56Lbn+CGdT44ioBMMvjNVldpKtj8tpniETdLjnxdHI1+sDWXIM1nNt+EanJOZ3IG9lzVjs7A==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-proposal-class-static-block": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.0.tgz", + "integrity": "sha512-mAy3sdcY9sKAkf3lQbDiv3olOfiLqI51c9DR9b19uMoR2Z6r5pmGl7dfNFqEvqOyqbf1ta4lknK4gc5PJn3mfA==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.0.tgz", + "integrity": "sha512-QGSA6ExWk95jFQgwz5GQ2Dr95cf7eI7TKutIXXTb7B1gCLTCz5hTjFTQGfLFBBiC5WSNi7udNwWsqbbMh1c4yQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.0.tgz", + "integrity": "sha512-CjI4nxM/D+5wCnhD11MHB1AwRSAYeDT+h8gCdcVJZ/OK7+wRzFsf7PFPWVpVpNRkHMmMkQWAHpTq+15IXQ1diA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.0.tgz", + "integrity": "sha512-kouIPuiv8mSi5JkEhzApg5Gn6hFyKPnlkO0a9YSzqRurH8wYzSlf6RJdzluAsbqecdW5pBvDJDfyDIUR/vLxvg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.0.tgz", + "integrity": "sha512-pbW0fE30sVTYXXm9lpVQQ/Vc+iTeQKiXlaNRZPPN2A2VdlWyAtsUrsQ3xydSlDW00TFMK7a8m3cDTkBF5WnV3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.0.tgz", + "integrity": "sha512-3bnHA8CAFm7cG93v8loghDYyQ8r97Qydf63BeYiGgYbjKKB/XP53W15wfRC7dvKfoiJ34f6Rbyyx2btExc8XsQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.0.tgz", + "integrity": "sha512-FAhE2I6mjispy+vwwd6xWPyEx3NYFS13pikDBWUAFGZvq6POGs5eNchw8+1CYoEgBl9n11I3NkzD7ghn25PQ9Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.0.tgz", + "integrity": "sha512-LU/+jp89efe5HuWJLmMmFG0+xbz+I2rSI7iLc1AlaeSMDMOGzWlc5yJrMN1d04osXN4sSfpo4O+azkBNBes0jg==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.16.0", + "@babel/helper-compilation-targets": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.16.0" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.0.tgz", + "integrity": "sha512-kicDo0A/5J0nrsCPbn89mTG3Bm4XgYi0CZtvex9Oyw7gGZE3HXGD0zpQNH+mo+tEfbo8wbmMvJftOwpmPy7aVw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.0.tgz", + "integrity": "sha512-Y4rFpkZODfHrVo70Uaj6cC1JJOt3Pp0MdWSwIKtb8z1/lsjl9AmnB7ErRFV+QNGIfcY1Eruc2UMx5KaRnXjMyg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.0.tgz", + "integrity": "sha512-IvHmcTHDFztQGnn6aWq4t12QaBXTKr1whF/dgp9kz84X6GUcwq9utj7z2wFCUfeOup/QKnOlt2k0zxkGFx9ubg==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.0.tgz", + "integrity": "sha512-3jQUr/HBbMVZmi72LpjQwlZ55i1queL8KcDTQEkAHihttJnAPrcvG9ZNXIfsd2ugpizZo595egYV6xy+pv4Ofw==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-create-class-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.0.tgz", + "integrity": "sha512-ti7IdM54NXv29cA4+bNNKEMS4jLMCbJgl+Drv+FgYy0erJLAxNAIXcNjNjrRZEcWq0xJHsNVwQezskMFpF8N9g==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.0.tgz", + "integrity": "sha512-8zv2+xiPHwly31RK4RmnEYY5zziuF3O7W2kIDW+07ewWDh6Oi0dRq8kwvulRkFgt6DB97RlKs5c1y068iPlCUg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.0.tgz", + "integrity": "sha512-Xv6mEXqVdaqCBfJFyeab0fH2DnUoMsDmhamxsSi4j8nLd4Vtw213WMJr55xxqipC/YVWyPY3K0blJncPYji+dQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.0.tgz", + "integrity": "sha512-vIFb5250Rbh7roWARvCLvIJ/PtAU5Lhv7BtZ1u24COwpI9Ypjsh+bZcKk6rlIyalK+r0jOc1XQ8I4ovNxNrWrA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.0.tgz", + "integrity": "sha512-PbIr7G9kR8tdH6g8Wouir5uVjklETk91GMVSUq+VaOgiinbCkBP6Q7NN/suM/QutZkMJMvcyAriogcYAdhg8Gw==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.16.0" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.0.tgz", + "integrity": "sha512-V14As3haUOP4ZWrLJ3VVx5rCnrYhMSHN/jX7z6FAt5hjRkLsb0snPCmJwSOML5oxkKO4FNoNv7V5hw/y2bjuvg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.0.tgz", + "integrity": "sha512-27n3l67/R3UrXfizlvHGuTwsRIFyce3D/6a37GRxn28iyTPvNXaW4XvznexRh1zUNLPjbLL22Id0XQElV94ruw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.0.tgz", + "integrity": "sha512-HUxMvy6GtAdd+GKBNYDWCIA776byUQH8zjnfjxwT1P1ARv/wFu8eBDpmXQcLS/IwRtrxIReGiplOwMeyO7nsDQ==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-optimise-call-expression": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.0.tgz", + "integrity": "sha512-63l1dRXday6S8V3WFY5mXJwcRAnPYxvFfTlt67bwV1rTyVTM5zrp0DBBb13Kl7+ehkCVwIZPumPpFP/4u70+Tw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.0.tgz", + "integrity": "sha512-Q7tBUwjxLTsHEoqktemHBMtb3NYwyJPTJdM+wDwb0g8PZ3kQUIzNvwD5lPaqW/p54TXBc/MXZu9Jr7tbUEUM8Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.0.tgz", + "integrity": "sha512-FXlDZfQeLILfJlC6I1qyEwcHK5UpRCFkaoVyA1nk9A1L1Yu583YO4un2KsLBsu3IJb4CUbctZks8tD9xPQubLw==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.0.tgz", + "integrity": "sha512-LIe2kcHKAZOJDNxujvmp6z3mfN6V9lJxubU4fJIGoQCkKe3Ec2OcbdlYP+vW++4MpxwG0d1wSDOJtQW5kLnkZQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.0.tgz", + "integrity": "sha512-OwYEvzFI38hXklsrbNivzpO3fh87skzx8Pnqi4LoSYeav0xHlueSoCJrSgTPfnbyzopo5b3YVAJkFIcUpK2wsw==", + "dev": true, + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.0.tgz", + "integrity": "sha512-5QKUw2kO+GVmKr2wMYSATCTTnHyscl6sxFRAY+rvN7h7WB0lcG0o4NoV6ZQU32OZGVsYUsfLGgPQpDFdkfjlJQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.0.tgz", + "integrity": "sha512-lBzMle9jcOXtSOXUpc7tvvTpENu/NuekNJVova5lCCWCV9/U1ho2HH2y0p6mBg8fPm/syEAbfaaemYGOHCY3mg==", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.0.tgz", + "integrity": "sha512-gQDlsSF1iv9RU04clgXqRjrPyyoJMTclFt3K1cjLmTKikc0s/6vE3hlDeEVC71wLTRu72Fq7650kABrdTc2wMQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.0.tgz", + "integrity": "sha512-WRpw5HL4Jhnxw8QARzRvwojp9MIE7Tdk3ez6vRyUk1MwgjJN0aNpRoXainLR5SgxmoXx/vsXGZ6OthP6t/RbUg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.0.tgz", + "integrity": "sha512-rWFhWbCJ9Wdmzln1NmSCqn7P0RAD+ogXG/bd9Kg5c7PKWkJtkiXmYsMBeXjDlzHpVTJ4I/hnjs45zX4dEv81xw==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.0.tgz", + "integrity": "sha512-Dzi+NWqyEotgzk/sb7kgQPJQf7AJkQBWsVp1N6JWc1lBVo0vkElUnGdr1PzUBmfsCCN5OOFya3RtpeHk15oLKQ==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-simple-access": "^7.16.0", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.0.tgz", + "integrity": "sha512-yuGBaHS3lF1m/5R+6fjIke64ii5luRUg97N2wr+z1sF0V+sNSXPxXDdEEL/iYLszsN5VKxVB1IPfEqhzVpiqvg==", + "dev": true, + "requires": { + "@babel/helper-hoist-variables": "^7.16.0", + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-identifier": "^7.15.7", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.0.tgz", + "integrity": "sha512-nx4f6no57himWiHhxDM5pjwhae5vLpTK2zCnDH8+wNLJy0TVER/LJRHl2bkt6w9Aad2sPD5iNNoUpY3X9sTGDg==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.0.tgz", + "integrity": "sha512-LogN88uO+7EhxWc8WZuQ8vxdSyVGxhkh8WTC3tzlT8LccMuQdA81e9SGV6zY7kY2LjDhhDOFdQVxdGwPyBCnvg==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.16.0" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.0.tgz", + "integrity": "sha512-fhjrDEYv2DBsGN/P6rlqakwRwIp7rBGLPbrKxwh7oVt5NNkIhZVOY2GRV+ULLsQri1bDqwDWnU3vhlmx5B2aCw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.0.tgz", + "integrity": "sha512-fds+puedQHn4cPLshoHcR1DTMN0q1V9ou0mUjm8whx9pGcNvDrVVrgw+KJzzCaiTdaYhldtrUps8DWVMgrSEyg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.16.0" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.3.tgz", + "integrity": "sha512-3MaDpJrOXT1MZ/WCmkOFo7EtmVVC8H4EUZVrHvFOsmwkk4lOjQj8rzv8JKUZV4YoQKeoIgk07GO+acPU9IMu/w==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.0.tgz", + "integrity": "sha512-XLldD4V8+pOqX2hwfWhgwXzGdnDOThxaNTgqagOcpBgIxbUvpgU2FMvo5E1RyHbk756WYgdbS0T8y0Cj9FKkWQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-react-display-name": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.0.tgz", + "integrity": "sha512-FJFdJAqaCpndL+pIf0aeD/qlQwT7QXOvR6Cc8JPvNhKJBi2zc/DPc4g05Y3fbD/0iWAMQFGij4+Xw+4L/BMpTg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-react-jsx": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.16.0.tgz", + "integrity": "sha512-rqDgIbukZ44pqq7NIRPGPGNklshPkvlmvqjdx3OZcGPk4zGIenYkxDTvl3LsSL8gqcc3ZzGmXPE6hR/u/voNOw==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-module-imports": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-jsx": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/plugin-transform-react-jsx-development": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.0.tgz", + "integrity": "sha512-qq65iSqBRq0Hr3wq57YG2AmW0H6wgTnIzpffTphrUWUgLCOK+zf1f7G0vuOiXrp7dU1qq+fQBoqZ3wCDAkhFzw==", + "dev": true, + "requires": { + "@babel/plugin-transform-react-jsx": "^7.16.0" + } + }, + "@babel/plugin-transform-react-pure-annotations": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.16.0.tgz", + "integrity": "sha512-NC/Bj2MG+t8Ef5Pdpo34Ay74X4Rt804h5y81PwOpfPtmAK3i6CizmQqwyBQzIepz1Yt8wNr2Z2L7Lu3qBMfZMA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.0.tgz", + "integrity": "sha512-JAvGxgKuwS2PihiSFaDrp94XOzzTUeDeOQlcKzVAyaPap7BnZXK/lvMDiubkPTdotPKOIZq9xWXWnggUMYiExg==", + "dev": true, + "requires": { + "regenerator-transform": "^0.14.2" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.0.tgz", + "integrity": "sha512-Dgs8NNCehHSvXdhEhln8u/TtJxfVwGYCgP2OOr5Z3Ar+B+zXicEOKNTyc+eca2cuEOMtjW6m9P9ijOt8QdqWkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-runtime": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.4.tgz", + "integrity": "sha512-pru6+yHANMTukMtEZGC4fs7XPwg35v8sj5CIEmE+gEkFljFiVJxEWxx/7ZDkTK+iZRYo1bFXBtfIN95+K3cJ5A==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.4.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "semver": "^6.3.0" + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.0.tgz", + "integrity": "sha512-iVb1mTcD8fuhSv3k99+5tlXu5N0v8/DPm2mO3WACLG6al1CGZH7v09HJyUb1TtYl/Z+KrM6pHSIJdZxP5A+xow==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.0.tgz", + "integrity": "sha512-Ao4MSYRaLAQczZVp9/7E7QHsCuK92yHRrmVNRe/SlEJjhzivq0BSn8mEraimL8wizHZ3fuaHxKH0iwzI13GyGg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.0.tgz", + "integrity": "sha512-/ntT2NljR9foobKk4E/YyOSwcGUXtYWv5tinMK/3RkypyNBNdhHUaq6Orw5DWq9ZcNlS03BIlEALFeQgeVAo4Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.0.tgz", + "integrity": "sha512-Rd4Ic89hA/f7xUSJQk5PnC+4so50vBoBfxjdQAdvngwidM8jYIBVxBZ/sARxD4e0yMXRbJVDrYf7dyRtIIKT6Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.0.tgz", + "integrity": "sha512-++V2L8Bdf4vcaHi2raILnptTBjGEFxn5315YU+e8+EqXIucA+q349qWngCLpUYqqv233suJ6NOienIVUpS9cqg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-typescript": { + "version": "7.16.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.1.tgz", + "integrity": "sha512-NO4XoryBng06jjw/qWEU2LhcLJr1tWkhpMam/H4eas/CDKMX/b2/Ylb6EI256Y7+FVPCawwSM1rrJNOpDiz+Lg==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-typescript": "^7.16.0" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.0.tgz", + "integrity": "sha512-VFi4dhgJM7Bpk8lRc5CMaRGlKZ29W9C3geZjt9beuzSUrlJxsNwX7ReLwaL6WEvsOf2EQkyIJEPtF8EXjB/g2A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.0.tgz", + "integrity": "sha512-jHLK4LxhHjvCeZDWyA9c+P9XH1sOxRd1RO9xMtDVRAOND/PczPqizEtVdx4TQF/wyPaewqpT+tgQFYMnN/P94A==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.16.0", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/preset-env": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.4.tgz", + "integrity": "sha512-v0QtNd81v/xKj4gNKeuAerQ/azeNn/G1B1qMLeXOcV8+4TWlD2j3NV1u8q29SDFBXx/NBq5kyEAO+0mpRgacjA==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.16.4", + "@babel/helper-compilation-targets": "^7.16.3", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.2", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-async-generator-functions": "^7.16.4", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-class-static-block": "^7.16.0", + "@babel/plugin-proposal-dynamic-import": "^7.16.0", + "@babel/plugin-proposal-export-namespace-from": "^7.16.0", + "@babel/plugin-proposal-json-strings": "^7.16.0", + "@babel/plugin-proposal-logical-assignment-operators": "^7.16.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-object-rest-spread": "^7.16.0", + "@babel/plugin-proposal-optional-catch-binding": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-proposal-private-property-in-object": "^7.16.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.16.0", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.16.0", + "@babel/plugin-transform-async-to-generator": "^7.16.0", + "@babel/plugin-transform-block-scoped-functions": "^7.16.0", + "@babel/plugin-transform-block-scoping": "^7.16.0", + "@babel/plugin-transform-classes": "^7.16.0", + "@babel/plugin-transform-computed-properties": "^7.16.0", + "@babel/plugin-transform-destructuring": "^7.16.0", + "@babel/plugin-transform-dotall-regex": "^7.16.0", + "@babel/plugin-transform-duplicate-keys": "^7.16.0", + "@babel/plugin-transform-exponentiation-operator": "^7.16.0", + "@babel/plugin-transform-for-of": "^7.16.0", + "@babel/plugin-transform-function-name": "^7.16.0", + "@babel/plugin-transform-literals": "^7.16.0", + "@babel/plugin-transform-member-expression-literals": "^7.16.0", + "@babel/plugin-transform-modules-amd": "^7.16.0", + "@babel/plugin-transform-modules-commonjs": "^7.16.0", + "@babel/plugin-transform-modules-systemjs": "^7.16.0", + "@babel/plugin-transform-modules-umd": "^7.16.0", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.16.0", + "@babel/plugin-transform-new-target": "^7.16.0", + "@babel/plugin-transform-object-super": "^7.16.0", + "@babel/plugin-transform-parameters": "^7.16.3", + "@babel/plugin-transform-property-literals": "^7.16.0", + "@babel/plugin-transform-regenerator": "^7.16.0", + "@babel/plugin-transform-reserved-words": "^7.16.0", + "@babel/plugin-transform-shorthand-properties": "^7.16.0", + "@babel/plugin-transform-spread": "^7.16.0", + "@babel/plugin-transform-sticky-regex": "^7.16.0", + "@babel/plugin-transform-template-literals": "^7.16.0", + "@babel/plugin-transform-typeof-symbol": "^7.16.0", + "@babel/plugin-transform-unicode-escapes": "^7.16.0", + "@babel/plugin-transform-unicode-regex": "^7.16.0", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.16.0", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.4.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "core-js-compat": "^3.19.1", + "semver": "^6.3.0" + } + }, + "@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/preset-react": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.16.0.tgz", + "integrity": "sha512-d31IFW2bLRB28uL1WoElyro8RH5l6531XfxMtCeCmp6RVAF1uTfxxUA0LH1tXl+psZdwfmIbwoG4U5VwgbhtLw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-transform-react-display-name": "^7.16.0", + "@babel/plugin-transform-react-jsx": "^7.16.0", + "@babel/plugin-transform-react-jsx-development": "^7.16.0", + "@babel/plugin-transform-react-pure-annotations": "^7.16.0" + } + }, + "@babel/preset-typescript": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.16.0.tgz", + "integrity": "sha512-txegdrZYgO9DlPbv+9QOVpMnKbOtezsLHWsnsRF4AjbSIsVaujrq1qg8HK0mxQpWv0jnejt0yEoW1uWpvbrDTg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-transform-typescript": "^7.16.0" + } + }, + "@babel/runtime": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz", + "integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/template": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz", + "integrity": "sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.16.0", + "@babel/parser": "^7.16.0", + "@babel/types": "^7.16.0" + } + }, + "@babel/traverse": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.3.tgz", + "integrity": "sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.16.0", + "@babel/generator": "^7.16.0", + "@babel/helper-function-name": "^7.16.0", + "@babel/helper-hoist-variables": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0", + "@babel/parser": "^7.16.3", + "@babel/types": "^7.16.0", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz", + "integrity": "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.15.7", + "to-fast-properties": "^2.0.0" + } + }, + "@discoveryjs/json-ext": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.5.tgz", + "integrity": "sha512-6nFkfkmSeV/rqSaS4oWHgmpnYw194f6hmWF5is6b0J1naJZoiD0NTc9AiUwPHvWsowkjuHErCZT1wa0jg+BLIA==", + "dev": true + }, + "@eslint/eslintrc": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", + "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "globals": { + "version": "13.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.12.0.tgz", + "integrity": "sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + } + } + }, + "@humanwhocodes/config-array": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", + "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", + "dev": true, + "requires": { + "@humanwhocodes/object-schema": "^1.2.0", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + } + }, + "@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@popperjs/core": { + "version": "2.10.2", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.10.2.tgz", + "integrity": "sha512-IXf3XA7+XyN7CP9gGh/XB0UxVMlvARGEgGXLubFICsUMGz6Q+DU+i4gGlpOxTjKvXjkJDJC8YdqdKkDj9qZHEQ==" + }, + "@react-aria/ssr": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.1.0.tgz", + "integrity": "sha512-RxqQKmE8sO7TGdrcSlHTcVzMP450hqowtBSd2bBS9oPlcokVkaGq28c3Rwa8ty5ctw4EBCjXqjP7xdcKMGDzug==", + "requires": { + "@babel/runtime": "^7.6.2" + } + }, + "@restart/context": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@restart/context/-/context-2.1.4.tgz", + "integrity": "sha512-INJYZQJP7g+IoDUh/475NlGiTeMfwTXUEr3tmRneckHIxNolGOW9CTq83S8cxq0CgJwwcMzMJFchxvlwe7Rk8Q==", + "requires": {} + }, + "@restart/hooks": { + "version": "0.3.27", + "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.3.27.tgz", + "integrity": "sha512-s984xV/EapUIfkjlf8wz9weP2O9TNKR96C68FfMEy2bE69+H4cNv3RD4Mf97lW7Htt7PjZrYTjSC8f3SB9VCXw==", + "requires": { + "dequal": "^2.0.2" + } + }, + "@restart/ui": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@restart/ui/-/ui-0.2.3.tgz", + "integrity": "sha512-FDhtjIR9QvUfMwvFsgVurRA1qdYxM0F0S07acywjG7gNI2YmQo78rtCYIe553V/pyBjEjaKAg3fzBFCocFTqyQ==", + "requires": { + "@babel/runtime": "^7.13.16", + "@popperjs/core": "^2.10.1", + "@react-aria/ssr": "^3.0.1", + "@restart/hooks": "^0.4.0", + "@types/warning": "^3.0.0", + "dequal": "^2.0.2", + "dom-helpers": "^5.2.0", + "prop-types": "^15.7.2", + "uncontrollable": "^7.2.1", + "warning": "^4.0.3" + }, + "dependencies": { + "@restart/hooks": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.1.tgz", + "integrity": "sha512-87UMGZcFwbj0Gr+8eEBAzL6H8xF5pMwq/S3LWeFK9cg4+lTqLFMsiVQFT4ncMJzqgpdD7T6ktF8PsEHeN2O+MQ==", + "requires": { + "dequal": "^2.0.2" + } + } + } + }, + "@sindresorhus/is": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", + "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==", + "dev": true, + "optional": true + }, + "@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true, + "optional": true + }, + "@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "dev": true, + "requires": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/connect-history-api-fallback": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", + "integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==", + "dev": true, + "requires": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "@types/eslint": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.2.0.tgz", + "integrity": "sha512-74hbvsnc+7TEDa1z5YLSe4/q8hGYB3USNvCuzHUJrjPV6hXaq8IXcngCrHkuvFt0+8rFz7xYXrHgNayIX0UZvQ==", + "dev": true, + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/eslint-scope": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.1.tgz", + "integrity": "sha512-SCFeogqiptms4Fg29WpOTk5nHIzfpKCemSN63ksBQYKTcXoJEmJagV+DhVmbapZzY4/5YaOV1nZwrsU79fFm1g==", + "dev": true, + "requires": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "@types/estree": { + "version": "0.0.50", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz", + "integrity": "sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==", + "dev": true + }, + "@types/express": { + "version": "4.17.13", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", + "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", + "dev": true, + "requires": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.18", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "@types/express-serve-static-core": { + "version": "4.17.25", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.25.tgz", + "integrity": "sha512-OUJIVfRMFijZukGGwTpKNFprqCCXk5WjNGvUgB/CxxBR40QWSjsNK86+yvGKlCOGc7sbwfHLaXhkG+NsytwBaQ==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "@types/fork-ts-checker-webpack-plugin": { + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/@types/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-0.4.5.tgz", + "integrity": "sha512-xb9bErGrHZ0ypV3ls0tNekGItPoS6tSLi74zjfNOTbCcDOdG7lokSQi24DFXvvh3TwyTfVv2U9LJ172Wz82DrA==", + "dev": true, + "requires": { + "fork-ts-checker-webpack-plugin": "*" + } + }, + "@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "@types/history": { + "version": "4.7.11", + "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz", + "integrity": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==" + }, + "@types/http-proxy": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.7.tgz", + "integrity": "sha512-9hdj6iXH64tHSLTY+Vt2eYOGzSogC+JQ2H7bdPWkuh7KXP5qLllWx++t+K9Wk556c3dkDdPws/SpMRi0sdCT1w==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/invariant": { + "version": "2.2.35", + "resolved": "https://registry.npmjs.org/@types/invariant/-/invariant-2.2.35.tgz", + "integrity": "sha512-DxX1V9P8zdJPYQat1gHyY0xj3efl8gnMVjiM9iCY6y27lj+PoQWkgjt8jDqmovPqULkKVpKRg8J36iQiA+EtEg==" + }, + "@types/json-schema": { + "version": "7.0.9", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", + "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==", + "dev": true + }, + "@types/mime": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", + "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", + "dev": true + }, + "@types/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", + "dev": true + }, + "@types/node": { + "version": "16.11.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.10.tgz", + "integrity": "sha512-3aRnHa1KlOEEhJ6+CvyHKK5vE9BcLGjtUpwvqYLRvYNQKMfabu3BwfJaA/SLW8dxe28LsNDjtHwePTuzn3gmOA==", + "dev": true + }, + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "dev": true + }, + "@types/prop-types": { + "version": "15.7.4", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz", + "integrity": "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==" + }, + "@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "dev": true + }, + "@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "dev": true + }, + "@types/react": { + "version": "17.0.37", + "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.37.tgz", + "integrity": "sha512-2FS1oTqBGcH/s0E+CjrCCR9+JMpsu9b69RTFO+40ua43ZqP5MmQ4iUde/dMjWR909KxZwmOQIFq6AV6NjEG5xg==", + "requires": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "@types/react-dom": { + "version": "17.0.18", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.18.tgz", + "integrity": "sha512-rLVtIfbwyur2iFKykP2w0pl/1unw26b5td16d5xMgp7/yjTHomkyxPYChFoCr/FtEX1lN9wY6lFj1qvKdS5kDw==", + "dev": true, + "requires": { + "@types/react": "^17" + } + }, + "@types/react-router": { + "version": "5.1.19", + "resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.19.tgz", + "integrity": "sha512-Fv/5kb2STAEMT3wHzdKQK2z8xKq38EDIGVrutYLmQVVLe+4orDFquU52hQrULnEHinMKv9FSA6lf9+uNT1ITtA==", + "requires": { + "@types/history": "^4.7.11", + "@types/react": "*" + } + }, + "@types/react-router-dom": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz", + "integrity": "sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==", + "requires": { + "@types/history": "^4.7.11", + "@types/react": "*", + "@types/react-router": "*" + } + }, + "@types/react-transition-group": { + "version": "4.4.4", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.4.tgz", + "integrity": "sha512-7gAPz7anVK5xzbeQW9wFBDg7G++aPLAFY0QaSMOou9rJZpbuI58WAuJrgu+qR92l61grlnCUe7AFX8KGahAgug==", + "requires": { + "@types/react": "*" + } + }, + "@types/scheduler": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", + "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" + }, + "@types/serve-static": { + "version": "1.13.10", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.10.tgz", + "integrity": "sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==", + "dev": true, + "requires": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==", + "dev": true + }, + "@types/tapable": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.8.tgz", + "integrity": "sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==", + "dev": true + }, + "@types/uglify-js": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.13.1.tgz", + "integrity": "sha512-O3MmRAk6ZuAKa9CHgg0Pr0+lUOqoMLpc9AS4R8ano2auvsg7IE8syF3Xh/NPr26TWklxYcqoEEFdzLLs1fV9PQ==", + "dev": true, + "requires": { + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "@types/warning": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.0.tgz", + "integrity": "sha1-DSUBJorY+ZYrdA04fEZU9fjiPlI=" + }, + "@types/webpack": { + "version": "4.41.32", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.32.tgz", + "integrity": "sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/tapable": "^1", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "anymatch": "^3.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "@types/webpack-dev-server": { + "version": "3.11.6", + "resolved": "https://registry.npmjs.org/@types/webpack-dev-server/-/webpack-dev-server-3.11.6.tgz", + "integrity": "sha512-XCph0RiiqFGetukCTC3KVnY1jwLcZ84illFRMbyFzCcWl90B/76ew0tSqF46oBhnLC4obNDG7dMO0JfTN0MgMQ==", + "dev": true, + "requires": { + "@types/connect-history-api-fallback": "*", + "@types/express": "*", + "@types/serve-static": "*", + "@types/webpack": "^4", + "http-proxy-middleware": "^1.0.0" + } + }, + "@types/webpack-sources": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.0.tgz", + "integrity": "sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true + } + } + }, + "@typescript-eslint/eslint-plugin": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz", + "integrity": "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==", + "dev": true, + "requires": { + "@typescript-eslint/experimental-utils": "4.33.0", + "@typescript-eslint/scope-manager": "4.33.0", + "debug": "^4.3.1", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.1.8", + "regexpp": "^3.1.0", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "dependencies": { + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@typescript-eslint/experimental-utils": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz", + "integrity": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.7", + "@typescript-eslint/scope-manager": "4.33.0", + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/typescript-estree": "4.33.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, + "dependencies": { + "eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^2.0.0" + } + } + } + }, + "@typescript-eslint/parser": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.33.0.tgz", + "integrity": "sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "4.33.0", + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/typescript-estree": "4.33.0", + "debug": "^4.3.1" + } + }, + "@typescript-eslint/scope-manager": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz", + "integrity": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/visitor-keys": "4.33.0" + } + }, + "@typescript-eslint/types": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz", + "integrity": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz", + "integrity": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/visitor-keys": "4.33.0", + "debug": "^4.3.1", + "globby": "^11.0.3", + "is-glob": "^4.0.1", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "dependencies": { + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@typescript-eslint/visitor-keys": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz", + "integrity": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.33.0", + "eslint-visitor-keys": "^2.0.0" + } + }, + "@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", + "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "dev": true, + "requires": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", + "dev": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", + "dev": true + }, + "@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "dev": true, + "requires": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", + "dev": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "dev": true, + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "dev": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", + "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", + "dev": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@webpack-cli/configtest": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.1.0.tgz", + "integrity": "sha512-ttOkEkoalEHa7RaFYpM0ErK1xc4twg3Am9hfHhL7MVqlHebnkYd2wuI/ZqTDj0cVzZho6PdinY0phFZV3O0Mzg==", + "dev": true, + "requires": {} + }, + "@webpack-cli/info": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.4.0.tgz", + "integrity": "sha512-F6b+Man0rwE4n0409FyAJHStYA5OIZERxmnUfLVwv0mc0V1wLad3V7jqRlMkgKBeAq07jUvglacNaa6g9lOpuw==", + "dev": true, + "requires": { + "envinfo": "^7.7.3" + } + }, + "@webpack-cli/serve": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.6.0.tgz", + "integrity": "sha512-ZkVeqEmRpBV2GHvjjUZqEai2PpUbuq8Bqd//vEYsp63J8WyexI8ppCqVS3Zs0QADf6aWuPdU+0XsPI647PVlQA==", + "dev": true, + "requires": {} + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "dev": true, + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + } + }, + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "requires": {} + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true, + "requires": {} + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "requires": {} + }, + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true + }, + "ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "dev": true, + "optional": true + }, + "archive-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz", + "integrity": "sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==", + "dev": true, + "optional": true, + "requires": { + "file-type": "^4.2.0" + }, + "dependencies": { + "file-type": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz", + "integrity": "sha512-f2UbFQEk7LXgWpi5ntcO86OeA/cC80fuDDDaX/fZ2ZGel+AF7leRQqBBW1eJNiiQkrZlAoM6P+VYP5P6bOlDEQ==", + "dev": true, + "optional": true + } + } + }, + "arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true + }, + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + }, + "array-includes": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz", + "integrity": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.7" + } + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true + }, + "array.prototype.flatmap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz", + "integrity": "sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0" + } + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true + }, + "astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true + }, + "async": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "dev": true, + "requires": { + "lodash": "^4.17.14" + } + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", + "dev": true + }, + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "dev": true + }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true + }, + "babel-code-frame": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", + "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "esutils": "^2.0.2", + "js-tokens": "^3.0.2" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + } + }, + "js-tokens": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", + "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=", + "dev": true + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + } + } + }, + "babel-helper-function-name": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz", + "integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=", + "dev": true, + "requires": { + "babel-helper-get-function-arity": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-helper-get-function-arity": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz", + "integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "babel-loader": { + "version": "8.2.3", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.3.tgz", + "integrity": "sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==", + "dev": true, + "requires": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^1.4.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + } + }, + "babel-messages": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz", + "integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=", + "dev": true, + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dev": true, + "requires": { + "object.assign": "^4.1.0" + } + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.0.tgz", + "integrity": "sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.3.0", + "semver": "^6.1.1" + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.4.0.tgz", + "integrity": "sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.0", + "core-js-compat": "^3.18.0" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.0.tgz", + "integrity": "sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.0" + } + }, + "babel-plugin-syntax-class-properties": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz", + "integrity": "sha1-1+sjt5oxf4VDlixQW4J8fWysJ94=", + "dev": true + }, + "babel-plugin-transform-class-properties": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz", + "integrity": "sha1-anl2PqYdM9NvN7YRqp3vgagbRqw=", + "dev": true, + "requires": { + "babel-helper-function-name": "^6.24.1", + "babel-plugin-syntax-class-properties": "^6.8.0", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" + } + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "dev": true, + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": { + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", + "dev": true + } + } + }, + "babel-template": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz", + "integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=", + "dev": true, + "requires": { + "babel-runtime": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "lodash": "^4.17.4" + } + }, + "babel-traverse": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz", + "integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=", + "dev": true, + "requires": { + "babel-code-frame": "^6.26.0", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "debug": "^2.6.8", + "globals": "^9.18.0", + "invariant": "^2.2.2", + "lodash": "^4.17.4" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "globals": { + "version": "9.18.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz", + "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz", + "integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=", + "dev": true, + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + }, + "dependencies": { + "to-fast-properties": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", + "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=", + "dev": true + } + } + }, + "babylon": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", + "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==", + "dev": true + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "optional": true + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", + "dev": true + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "bin-build": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz", + "integrity": "sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA==", + "dev": true, + "optional": true, + "requires": { + "decompress": "^4.0.0", + "download": "^6.2.2", + "execa": "^0.7.0", + "p-map-series": "^1.0.0", + "tempfile": "^2.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "dev": true, + "optional": true, + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", + "dev": true, + "optional": true, + "requires": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true, + "optional": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "optional": true + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "optional": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "optional": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "optional": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "optional": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "optional": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "optional": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true, + "optional": true + } + } + }, + "bin-check": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", + "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", + "dev": true, + "optional": true, + "requires": { + "execa": "^0.7.0", + "executable": "^4.1.0" + }, + "dependencies": { + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "dev": true, + "optional": true, + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", + "dev": true, + "optional": true, + "requires": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true, + "optional": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "optional": true + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "optional": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "optional": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "optional": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "optional": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "optional": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "optional": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true, + "optional": true + } + } + }, + "bin-version": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz", + "integrity": "sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==", + "dev": true, + "optional": true, + "requires": { + "execa": "^1.0.0", + "find-versions": "^3.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "optional": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "optional": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "optional": true, + "requires": { + "pump": "^3.0.0" + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "optional": true + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "optional": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "optional": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "optional": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "optional": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "optional": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "optional": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "bin-version-check": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz", + "integrity": "sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==", + "dev": true, + "optional": true, + "requires": { + "bin-version": "^3.0.0", + "semver": "^5.6.0", + "semver-truncate": "^1.1.2" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "optional": true + } + } + }, + "bin-wrapper": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz", + "integrity": "sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q==", + "dev": true, + "optional": true, + "requires": { + "bin-check": "^4.1.0", + "bin-version-check": "^4.0.0", + "download": "^7.1.0", + "import-lazy": "^3.1.0", + "os-filter-obj": "^2.0.0", + "pify": "^4.0.1" + }, + "dependencies": { + "download": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz", + "integrity": "sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==", + "dev": true, + "optional": true, + "requires": { + "archive-type": "^4.0.0", + "caw": "^2.0.1", + "content-disposition": "^0.5.2", + "decompress": "^4.2.0", + "ext-name": "^5.0.0", + "file-type": "^8.1.0", + "filenamify": "^2.0.0", + "get-stream": "^3.0.0", + "got": "^8.3.1", + "make-dir": "^1.2.0", + "p-event": "^2.1.0", + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "optional": true + } + } + }, + "file-type": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz", + "integrity": "sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==", + "dev": true, + "optional": true + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true, + "optional": true + }, + "got": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", + "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", + "dev": true, + "optional": true, + "requires": { + "@sindresorhus/is": "^0.7.0", + "cacheable-request": "^2.1.1", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "into-stream": "^3.1.0", + "is-retry-allowed": "^1.1.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "mimic-response": "^1.0.0", + "p-cancelable": "^0.4.0", + "p-timeout": "^2.0.1", + "pify": "^3.0.0", + "safe-buffer": "^5.1.1", + "timed-out": "^4.0.1", + "url-parse-lax": "^3.0.0", + "url-to-options": "^1.0.1" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "optional": true + } + } + }, + "make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "optional": true, + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "optional": true + } + } + }, + "p-cancelable": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", + "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==", + "dev": true, + "optional": true + }, + "p-event": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz", + "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==", + "dev": true, + "optional": true, + "requires": { + "p-timeout": "^2.0.1" + } + }, + "p-timeout": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", + "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", + "dev": true, + "optional": true, + "requires": { + "p-finally": "^1.0.0" + } + }, + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", + "dev": true, + "optional": true + }, + "url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", + "dev": true, + "optional": true, + "requires": { + "prepend-http": "^2.0.0" + } + } + } + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "bl": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", + "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", + "dev": true, + "optional": true, + "requires": { + "readable-stream": "^2.3.5", + "safe-buffer": "^5.1.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "optional": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "optional": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "dev": true, + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "dependencies": { + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "dev": true, + "requires": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true, + "optional": true + }, + "bootstrap": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.6.1.tgz", + "integrity": "sha512-0dj+VgI9Ecom+rvvpNZ4MUZJz8dcX7WCX+eTID9+/8HgOkv3dsRzi8BGeZJCQU6flWQVYxwTQnEZFrmJSEO7og==", + "requires": {} + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "browserslist": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.18.1.tgz", + "integrity": "sha512-8ScCzdpPwR2wQh8IT82CA2VgDwjHyqMovPBZSNH54+tm4Jk2pCuv90gmAdH6J84OCRWi0b4gMe6O6XPXuJnjgQ==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001280", + "electron-to-chromium": "^1.3.896", + "escalade": "^3.1.1", + "node-releases": "^2.0.1", + "picocolors": "^1.0.0" + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "optional": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "dev": true, + "optional": true, + "requires": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", + "dev": true, + "optional": true + }, + "buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "dev": true, + "optional": true + }, + "buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==", + "dev": true, + "optional": true + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "dev": true + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "dev": true + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "cacheable-request": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", + "integrity": "sha512-vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ==", + "dev": true, + "optional": true, + "requires": { + "clone-response": "1.0.2", + "get-stream": "3.0.0", + "http-cache-semantics": "3.8.1", + "keyv": "3.0.0", + "lowercase-keys": "1.0.0", + "normalize-url": "2.0.1", + "responselike": "1.0.2" + }, + "dependencies": { + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true, + "optional": true + }, + "lowercase-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", + "integrity": "sha512-RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A==", + "dev": true, + "optional": true + } + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "caniuse-lite": { + "version": "1.0.30001418", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001418.tgz", + "integrity": "sha512-oIs7+JL3K9JRQ3jPZjlH6qyYDp+nBTCais7hjh0s+fuBwufc7uZ7hPYMXrDOJhV360KGMTcczMRObk0/iMqZRg==", + "dev": true + }, + "caw": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz", + "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==", + "dev": true, + "optional": true, + "requires": { + "get-proxy": "^2.0.0", + "isurl": "^1.0.0-alpha5", + "tunnel-agent": "^0.6.0", + "url-to-options": "^1.0.1" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "chart.js": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-3.9.1.tgz", + "integrity": "sha512-Ro2JbLmvg83gXF5F4sniaQ+lTbSv18E+TIf2cOeiH1Iqd2PGFOtem+DUufMZsCJwFE7ywPOpfXFBwRTGq7dh6w==" + }, + "chokidar": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", + "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + } + }, + "classnames": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.1.tgz", + "integrity": "sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==" + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + } + }, + "clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==", + "dev": true, + "optional": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "colorette": { + "version": "2.0.16", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.16.tgz", + "integrity": "sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==", + "dev": true + }, + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "dev": true, + "optional": true, + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "dev": true + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "dev": true, + "requires": { + "safe-buffer": "5.1.2" + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "dev": true + }, + "convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", + "dev": true + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "dev": true + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true + }, + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "dev": true + }, + "core-js-compat": { + "version": "3.19.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.19.1.tgz", + "integrity": "sha512-Q/VJ7jAF/y68+aUsQJ/afPOewdsGkDtcMb40J8MbuWKlK3Y+wtHq8bTHKPj2WKWLIqmS5JhHs4CzHtz6pT2W6g==", + "dev": true, + "requires": { + "browserslist": "^4.17.6", + "semver": "7.0.0" + }, + "dependencies": { + "semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "dev": true + } + } + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "dev": true, + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + } + }, + "create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "css-loader": { + "version": "5.2.7", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz", + "integrity": "sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==", + "dev": true, + "requires": { + "icss-utils": "^5.1.0", + "loader-utils": "^2.0.0", + "postcss": "^8.2.15", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.5" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dev": true, + "optional": true, + "requires": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + } + }, + "css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dev": true, + "optional": true, + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true + } + } + }, + "css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true, + "optional": true + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true + }, + "csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dev": true, + "optional": true, + "requires": { + "css-tree": "^1.1.2" + } + }, + "csstype": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.10.tgz", + "integrity": "sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==" + }, + "cwebp-bin": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cwebp-bin/-/cwebp-bin-7.0.1.tgz", + "integrity": "sha512-Ko5ADY74/dbfd8xG0+f+MUP9UKjCe1TG4ehpW0E5y4YlPdwDJlGrSzSR4/Yonxpm9QmZE1RratkIxFlKeyo3FA==", + "dev": true, + "optional": true, + "requires": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.1" + } + }, + "date-fns": { + "version": "2.26.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.26.0.tgz", + "integrity": "sha512-VQI812dRi3cusdY/fhoBKvc6l2W8BPWU1FNVnFH9Nttjx4AFBRzfSVb/Eyc7jBT6e9sg1XtAGsYpBQ6c/jygbg==", + "dev": true + }, + "debug": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true + }, + "decompress": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz", + "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==", + "dev": true, + "optional": true, + "requires": { + "decompress-tar": "^4.0.0", + "decompress-tarbz2": "^4.0.0", + "decompress-targz": "^4.0.0", + "decompress-unzip": "^4.0.1", + "graceful-fs": "^4.1.10", + "make-dir": "^1.0.0", + "pify": "^2.3.0", + "strip-dirs": "^2.0.0" + }, + "dependencies": { + "make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "optional": true, + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "optional": true + } + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "optional": true + } + } + }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", + "dev": true, + "optional": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, + "decompress-tar": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz", + "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==", + "dev": true, + "optional": true, + "requires": { + "file-type": "^5.2.0", + "is-stream": "^1.1.0", + "tar-stream": "^1.5.2" + }, + "dependencies": { + "file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", + "dev": true, + "optional": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "optional": true + } + } + }, + "decompress-tarbz2": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz", + "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==", + "dev": true, + "optional": true, + "requires": { + "decompress-tar": "^4.1.0", + "file-type": "^6.1.0", + "is-stream": "^1.1.0", + "seek-bzip": "^1.0.5", + "unbzip2-stream": "^1.0.9" + }, + "dependencies": { + "file-type": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz", + "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==", + "dev": true, + "optional": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "optional": true + } + } + }, + "decompress-targz": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz", + "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==", + "dev": true, + "optional": true, + "requires": { + "decompress-tar": "^4.1.1", + "file-type": "^5.2.0", + "is-stream": "^1.1.0" + }, + "dependencies": { + "file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", + "dev": true, + "optional": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "optional": true + } + } + }, + "decompress-unzip": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz", + "integrity": "sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==", + "dev": true, + "optional": true, + "requires": { + "file-type": "^3.8.0", + "get-stream": "^2.2.0", + "pify": "^2.3.0", + "yauzl": "^2.4.2" + }, + "dependencies": { + "file-type": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", + "integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==", + "dev": true, + "optional": true + }, + "get-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", + "integrity": "sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==", + "dev": true, + "optional": true, + "requires": { + "object-assign": "^4.0.1", + "pinkie-promise": "^2.0.0" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "optional": true + } + } + }, + "deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dev": true, + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + } + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "dev": true + }, + "default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "dev": true, + "requires": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "requires": { + "object-keys": "^1.0.12" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "dependencies": { + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, + "requires": { + "array-uniq": "^1.0.1" + } + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + } + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "dev": true + }, + "dequal": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.2.tgz", + "integrity": "sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==" + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "dev": true + }, + "detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=", + "dev": true + }, + "dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "dev": true, + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "dev": true, + "requires": { + "buffer-indexof": "^1.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "requires": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dev": true, + "optional": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "optional": true + }, + "domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "optional": true, + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "optional": true, + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "download": { + "version": "6.2.5", + "resolved": "https://registry.npmjs.org/download/-/download-6.2.5.tgz", + "integrity": "sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==", + "dev": true, + "optional": true, + "requires": { + "caw": "^2.0.0", + "content-disposition": "^0.5.2", + "decompress": "^4.0.0", + "ext-name": "^5.0.0", + "file-type": "5.2.0", + "filenamify": "^2.0.0", + "get-stream": "^3.0.0", + "got": "^7.0.0", + "make-dir": "^1.0.0", + "p-event": "^1.0.0", + "pify": "^3.0.0" + }, + "dependencies": { + "file-type": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", + "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", + "dev": true, + "optional": true + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true, + "optional": true + }, + "make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "optional": true, + "requires": { + "pify": "^3.0.0" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "optional": true + } + } + }, + "duplexer3": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", + "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==", + "dev": true, + "optional": true + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true + }, + "electron-to-chromium": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.3.tgz", + "integrity": "sha512-hfpppjYhqIZB8jrNb0rNceQRkSnBN7QJl3W26O1jUv3F3BkQknqy1YTqVXkFnIcFtBc3Qnv5M7r5Lez2iOLgZA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "dev": true + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "enhanced-resolve": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.3.tgz", + "integrity": "sha512-EGAbGvH7j7Xt2nc0E7D99La1OiEs8LnyimkRgwExpUMScN6O+3x9tIWs7PLQZVNx4YD+00skHXPXi1yQHpAmZA==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "dependencies": { + "tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true + } + } + }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "requires": { + "ansi-colors": "^4.1.1" + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "optional": true + }, + "envinfo": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", + "dev": true + }, + "errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "requires": { + "prr": "~1.0.1" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", + "dev": true + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "eslint": { + "version": "7.32.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", + "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", + "dev": true, + "requires": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.3", + "@humanwhocodes/config-array": "^0.5.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.1.2", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.9", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "globals": { + "version": "13.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.12.0.tgz", + "integrity": "sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "eslint-plugin-react": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.27.1.tgz", + "integrity": "sha512-meyunDjMMYeWr/4EBLTV1op3iSG3mjT/pz5gti38UzfM4OPpNc2m0t2xvKCOMU5D6FSdd34BIMFOvQbW+i8GAA==", + "dev": true, + "requires": { + "array-includes": "^3.1.4", + "array.prototype.flatmap": "^1.2.5", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.0.4", + "object.entries": "^1.1.5", + "object.fromentries": "^2.0.5", + "object.hasown": "^1.1.0", + "object.values": "^1.1.5", + "prop-types": "^15.7.2", + "resolve": "^2.0.0-next.3", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.6" + }, + "dependencies": { + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + }, + "resolve": { + "version": "2.0.0-next.3", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.3.tgz", + "integrity": "sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==", + "dev": true, + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + } + } + }, + "eslint-plugin-react-hooks": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.3.0.tgz", + "integrity": "sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==", + "dev": true, + "requires": {} + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } + } + }, + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true + }, + "espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dev": true, + "requires": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "dev": true + }, + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true + }, + "eventsource": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.1.0.tgz", + "integrity": "sha512-VSJjT5oCNrFvCS6igjzPAt5hBzQ2qPBFIbJ03zLI9SE0mxwZpMw6BfJrbFHm1a141AavMEB8JHmBhWAd66PfCg==", + "dev": true, + "requires": { + "original": "^1.0.0" + } + }, + "exec-buffer": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/exec-buffer/-/exec-buffer-3.2.0.tgz", + "integrity": "sha512-wsiD+2Tp6BWHoVv3B+5Dcx6E7u5zky+hUwOHjuH2hKSLR3dvRmX8fk8UD8uqQixHs4Wk6eDmiegVrMPjKj7wpA==", + "dev": true, + "optional": true, + "requires": { + "execa": "^0.7.0", + "p-finally": "^1.0.0", + "pify": "^3.0.0", + "rimraf": "^2.5.4", + "tempfile": "^2.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "dev": true, + "optional": true, + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", + "dev": true, + "optional": true, + "requires": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true, + "optional": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "optional": true + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "optional": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "optional": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "optional": true + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "optional": true + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "optional": true, + "requires": { + "glob": "^7.1.3" + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "optional": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "optional": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "optional": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true, + "optional": true + } + } + }, + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "executable": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", + "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", + "dev": true, + "optional": true, + "requires": { + "pify": "^2.2.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "optional": true + } + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "dev": true, + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "ext-list": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", + "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", + "dev": true, + "optional": true, + "requires": { + "mime-db": "^1.28.0" + } + }, + "ext-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", + "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", + "dev": true, + "optional": true, + "requires": { + "ext-list": "^2.0.0", + "sort-keys-length": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-glob": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", + "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "fast-xml-parser": { + "version": "3.21.1", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.21.1.tgz", + "integrity": "sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==", + "dev": true, + "optional": true, + "requires": { + "strnum": "^1.0.4" + } + }, + "fastest-levenshtein": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz", + "integrity": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==", + "dev": true + }, + "fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "dev": true, + "optional": true, + "requires": { + "pend": "~1.2.0" + } + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "requires": { + "flat-cache": "^3.0.4" + } + }, + "file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "file-type": { + "version": "12.4.2", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-12.4.2.tgz", + "integrity": "sha512-UssQP5ZgIOKelfsaB5CuGAL+Y+q7EmONuiwF3N5HAH0t27rvrttgi6Ra9k/+DVaY9UF6+ybxu5pOXLUdA8N7Vg==", + "dev": true + }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, + "filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==", + "dev": true, + "optional": true + }, + "filenamify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz", + "integrity": "sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==", + "dev": true, + "optional": true, + "requires": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.0", + "trim-repeated": "^1.0.0" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "find-versions": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz", + "integrity": "sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==", + "dev": true, + "optional": true, + "requires": { + "semver-regex": "^2.0.0" + } + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.4.tgz", + "integrity": "sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==", + "dev": true + }, + "follow-redirects": { + "version": "1.14.5", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.5.tgz", + "integrity": "sha512-wtphSXy7d4/OR+MvIFbCVBDzZ5520qV8XfPklSN5QtxuMUJZ+b0Wnst1e1lCDocfzuCkHqj8k0FpZqO+UIaKNA==", + "dev": true + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + }, + "fork-ts-checker-webpack-plugin": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.4.2.tgz", + "integrity": "sha512-EqtzzRdx2mldr0KEydSN9jaNrf419gMpwkloumG6K/S7jtJc9Fl7wMJ+y+o7DLLGMMU/kouYr06agTD/YkxzIQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, + "requires": { + "map-cache": "^0.2.2" + } + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "dev": true + }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "dev": true, + "optional": true, + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "optional": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "optional": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true, + "optional": true + }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "fs-monkey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", + "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", + "dev": true + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "get-proxy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz", + "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==", + "dev": true, + "optional": true, + "requires": { + "npm-conf": "^1.1.0" + } + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true + }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true + }, + "gifsicle": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/gifsicle/-/gifsicle-5.3.0.tgz", + "integrity": "sha512-FJTpgdj1Ow/FITB7SVza5HlzXa+/lqEY0tHQazAJbuAdvyJtkH4wIdsR2K414oaTwRXHFLLF+tYbipj+OpYg+Q==", + "dev": true, + "optional": true, + "requires": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0", + "execa": "^5.0.0" + } + }, + "glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + }, + "globby": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz", + "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, + "got": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz", + "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==", + "dev": true, + "optional": true, + "requires": { + "decompress-response": "^3.2.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "is-plain-obj": "^1.1.0", + "is-retry-allowed": "^1.0.0", + "is-stream": "^1.0.0", + "isurl": "^1.0.0-alpha5", + "lowercase-keys": "^1.0.0", + "p-cancelable": "^0.3.0", + "p-timeout": "^1.1.1", + "safe-buffer": "^5.0.1", + "timed-out": "^4.0.0", + "url-parse-lax": "^1.0.0", + "url-to-options": "^1.0.1" + }, + "dependencies": { + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "dev": true, + "optional": true + }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true, + "optional": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "optional": true + } + } + }, + "graceful-fs": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", + "dev": true + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + } + } + }, + "has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", + "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "has-symbol-support-x": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", + "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==", + "dev": true, + "optional": true + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", + "dev": true + }, + "has-to-string-tag-x": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", + "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", + "dev": true, + "optional": true, + "requires": { + "has-symbol-support-x": "^1.4.1" + } + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "history": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", + "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", + "requires": { + "@babel/runtime": "^7.1.2", + "loose-envify": "^1.2.0", + "resolve-pathname": "^3.0.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0", + "value-equal": "^1.0.1" + } + }, + "hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "requires": { + "react-is": "^16.7.0" + } + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", + "dev": true + }, + "http-cache-semantics": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", + "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==", + "dev": true, + "optional": true + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", + "dev": true + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + } + } + }, + "http-parser-js": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz", + "integrity": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==", + "dev": true + }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-proxy-middleware": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-1.3.1.tgz", + "integrity": "sha512-13eVVDYS4z79w7f1+NPllJtOQFx/FdUW4btIvVRMaRlUY9VGstAbo5MOhLEuUgZFRHn3x50ufn25zkj/boZnEg==", + "dev": true, + "requires": { + "@types/http-proxy": "^1.17.5", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + } + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "requires": {} + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "optional": true + }, + "ignore": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.9.tgz", + "integrity": "sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==", + "dev": true + }, + "image-webpack-loader": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/image-webpack-loader/-/image-webpack-loader-8.1.0.tgz", + "integrity": "sha512-bxzMIBNu42KGo6Bc9YMB0QEUt+XuVTl2ZSX3oGAlbsqYOkxkT4TEWvVsnwUkCRCYISJrMCEc/s0y8OYrmEfUOg==", + "dev": true, + "requires": { + "imagemin": "^7.0.1", + "imagemin-gifsicle": "^7.0.0", + "imagemin-mozjpeg": "^9.0.0", + "imagemin-optipng": "^8.0.0", + "imagemin-pngquant": "^9.0.2", + "imagemin-svgo": "^9.0.0", + "imagemin-webp": "^7.0.0", + "loader-utils": "^2.0.0", + "object-assign": "^4.1.1", + "schema-utils": "^2.7.1" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + } + } + }, + "imagemin": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/imagemin/-/imagemin-7.0.1.tgz", + "integrity": "sha512-33AmZ+xjZhg2JMCe+vDf6a9mzWukE7l+wAtesjE7KyteqqKjzxv7aVQeWnul1Ve26mWvEQqyPwl0OctNBfSR9w==", + "dev": true, + "requires": { + "file-type": "^12.0.0", + "globby": "^10.0.0", + "graceful-fs": "^4.2.2", + "junk": "^3.1.0", + "make-dir": "^3.0.0", + "p-pipe": "^3.0.0", + "replace-ext": "^1.0.0" + }, + "dependencies": { + "globby": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", + "integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "glob": "^7.1.3", + "ignore": "^5.1.1", + "merge2": "^1.2.3", + "slash": "^3.0.0" + } + } + } + }, + "imagemin-gifsicle": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/imagemin-gifsicle/-/imagemin-gifsicle-7.0.0.tgz", + "integrity": "sha512-LaP38xhxAwS3W8PFh4y5iQ6feoTSF+dTAXFRUEYQWYst6Xd+9L/iPk34QGgK/VO/objmIlmq9TStGfVY2IcHIA==", + "dev": true, + "optional": true, + "requires": { + "execa": "^1.0.0", + "gifsicle": "^5.0.0", + "is-gif": "^3.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "optional": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "optional": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "optional": true, + "requires": { + "pump": "^3.0.0" + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "optional": true + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "optional": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "optional": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "optional": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "optional": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "optional": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "optional": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "imagemin-mozjpeg": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/imagemin-mozjpeg/-/imagemin-mozjpeg-9.0.0.tgz", + "integrity": "sha512-TwOjTzYqCFRgROTWpVSt5UTT0JeCuzF1jswPLKALDd89+PmrJ2PdMMYeDLYZ1fs9cTovI9GJd68mRSnuVt691w==", + "dev": true, + "optional": true, + "requires": { + "execa": "^4.0.0", + "is-jpg": "^2.0.0", + "mozjpeg": "^7.0.0" + }, + "dependencies": { + "execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "dev": true, + "optional": true, + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "optional": true, + "requires": { + "pump": "^3.0.0" + } + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "dev": true, + "optional": true + } + } + }, + "imagemin-optipng": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/imagemin-optipng/-/imagemin-optipng-8.0.0.tgz", + "integrity": "sha512-CUGfhfwqlPjAC0rm8Fy+R2DJDBGjzy2SkfyT09L8rasnF9jSoHFqJ1xxSZWK6HVPZBMhGPMxCTL70OgTHlLF5A==", + "dev": true, + "optional": true, + "requires": { + "exec-buffer": "^3.0.0", + "is-png": "^2.0.0", + "optipng-bin": "^7.0.0" + } + }, + "imagemin-pngquant": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/imagemin-pngquant/-/imagemin-pngquant-9.0.2.tgz", + "integrity": "sha512-cj//bKo8+Frd/DM8l6Pg9pws1pnDUjgb7ae++sUX1kUVdv2nrngPykhiUOgFeE0LGY/LmUbCf4egCHC4YUcZSg==", + "dev": true, + "optional": true, + "requires": { + "execa": "^4.0.0", + "is-png": "^2.0.0", + "is-stream": "^2.0.0", + "ow": "^0.17.0", + "pngquant-bin": "^6.0.0" + }, + "dependencies": { + "execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "dev": true, + "optional": true, + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "optional": true, + "requires": { + "pump": "^3.0.0" + } + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "dev": true, + "optional": true + } + } + }, + "imagemin-svgo": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/imagemin-svgo/-/imagemin-svgo-9.0.0.tgz", + "integrity": "sha512-uNgXpKHd99C0WODkrJ8OO/3zW3qjgS4pW7hcuII0RcHN3tnKxDjJWcitdVC/TZyfIqSricU8WfrHn26bdSW62g==", + "dev": true, + "optional": true, + "requires": { + "is-svg": "^4.2.1", + "svgo": "^2.1.0" + } + }, + "imagemin-webp": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/imagemin-webp/-/imagemin-webp-7.0.0.tgz", + "integrity": "sha512-JoYjvHNgBLgrQAkeCO7T5iNc8XVpiBmMPZmiXMhalC7K6gwY/3DCEUfNxVPOmNJ+NIJlJFvzcMR9RBxIE74Xxw==", + "dev": true, + "optional": true, + "requires": { + "cwebp-bin": "^7.0.1", + "exec-buffer": "^3.2.0", + "is-cwebp-readable": "^3.0.0" + } + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "import-lazy": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz", + "integrity": "sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==", + "dev": true, + "optional": true + }, + "import-local": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.3.tgz", + "integrity": "sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA==", + "dev": true, + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true, + "optional": true + }, + "install": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/install/-/install-0.13.0.tgz", + "integrity": "sha512-zDml/jzr2PKU9I8J/xyZBQn8rPCAY//UOYNmR01XwNwyfhEWObo2SWfSl1+0tm1u6PhxLwDnfsT/6jB7OUxqFA==" + }, + "internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "dev": true, + "requires": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + } + }, + "internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "interpret": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", + "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", + "dev": true + }, + "into-stream": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", + "integrity": "sha512-TcdjPibTksa1NQximqep2r17ISRiNE9fwlfbg3F8ANdvP5/yrFTew86VcO//jk4QTaMlbjypPBq76HN2zaKfZQ==", + "dev": true, + "optional": true, + "requires": { + "from2": "^2.1.1", + "p-is-promise": "^1.1.0" + } + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "requires": { + "loose-envify": "^1.0.0" + } + }, + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "dev": true + }, + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", + "dev": true + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true + }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "dev": true + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-callable": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", + "dev": true + }, + "is-core-module": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz", + "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-cwebp-readable": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-cwebp-readable/-/is-cwebp-readable-3.0.0.tgz", + "integrity": "sha512-bpELc7/Q1/U5MWHn4NdHI44R3jxk0h9ew9ljzabiRl70/UIjL/ZAqRMb52F5+eke/VC8yTiv4Ewryo1fPWidvA==", + "dev": true, + "optional": true, + "requires": { + "file-type": "^10.5.0" + }, + "dependencies": { + "file-type": { + "version": "10.11.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz", + "integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==", + "dev": true, + "optional": true + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-gif": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-gif/-/is-gif-3.0.0.tgz", + "integrity": "sha512-IqJ/jlbw5WJSNfwQ/lHEDXF8rxhRgF6ythk2oiEvhpG29F704eX9NO6TvPfMiq9DrbwgcEDnETYNcZDPewQoVw==", + "dev": true, + "optional": true, + "requires": { + "file-type": "^10.4.0" + }, + "dependencies": { + "file-type": { + "version": "10.11.0", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz", + "integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==", + "dev": true, + "optional": true + } + } + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-jpg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz", + "integrity": "sha512-ODlO0ruzhkzD3sdynIainVP5eoOFNN85rxA1+cwwnPe4dKyX0r5+hxNO5XpCrxlHcmb9vkOit9mhRD2JVuimHg==", + "dev": true, + "optional": true + }, + "is-natural-number": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz", + "integrity": "sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==", + "dev": true, + "optional": true + }, + "is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", + "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", + "dev": true + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-number-object": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz", + "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", + "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==", + "dev": true, + "optional": true + }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true + }, + "is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dev": true, + "requires": { + "is-path-inside": "^2.1.0" + } + }, + "is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dev": true, + "requires": { + "path-is-inside": "^1.0.2" + } + }, + "is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "is-png": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-png/-/is-png-2.0.0.tgz", + "integrity": "sha512-4KPGizaVGj2LK7xwJIz8o5B2ubu1D/vcQsgOGFEDlpcvgZHto4gBnyd0ig7Ws+67ixmwKoNmu0hYnpo6AaKb5g==", + "dev": true, + "optional": true + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", + "dev": true, + "optional": true + }, + "is-shared-array-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz", + "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==", + "dev": true + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-svg": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-4.3.2.tgz", + "integrity": "sha512-mM90duy00JGMyjqIVHu9gNTjywdZV+8qNasX8cm/EEYZ53PHDgajvbBwNVvty5dwSAxLUD3p3bdo+7sR/UMrpw==", + "dev": true, + "optional": true, + "requires": { + "fast-xml-parser": "^3.19.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-weakref": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.1.tgz", + "integrity": "sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.0" + } + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + }, + "isurl": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", + "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", + "dev": true, + "optional": true, + "requires": { + "has-to-string-tag-x": "^1.2.0", + "is-object": "^1.0.1" + } + }, + "jest-worker": { + "version": "27.3.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.3.1.tgz", + "integrity": "sha512-ks3WCzsiZaOPJl/oMsDjaf0TRiSv7ctNgs0FqRr2nARsovz6AWWy4oLElwcquGSz692DzgZQrCLScPNs5YlC4g==", + "dev": true, + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jquery": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.0.tgz", + "integrity": "sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw==", + "peer": true + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, + "json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==", + "dev": true, + "optional": true + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, + "json3": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", + "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==", + "dev": true + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "jsx-ast-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.1.tgz", + "integrity": "sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==", + "dev": true, + "requires": { + "array-includes": "^3.1.3", + "object.assign": "^4.1.2" + } + }, + "junk": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz", + "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==", + "dev": true + }, + "keyv": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", + "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", + "dev": true, + "optional": true, + "requires": { + "json-buffer": "3.0.0" + } + }, + "killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", + "dev": true + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + }, + "klona": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz", + "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==", + "dev": true + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "loader-runner": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz", + "integrity": "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==", + "dev": true + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + } + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", + "dev": true + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=", + "dev": true + }, + "loglevel": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz", + "integrity": "sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==", + "dev": true + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "dev": true, + "optional": true + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + } + }, + "make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, + "requires": { + "object-visit": "^1.0.0" + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "dev": true, + "optional": true + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "dev": true + }, + "memfs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.0.tgz", + "integrity": "sha512-o/RfP0J1d03YwsAxyHxAYs2kyJp55AFkMazlFAZFR2I2IXkxiUTXRabJ6RmNNCQ83LAD2jy52Khj0m3OffpNdA==", + "dev": true, + "requires": { + "fs-monkey": "1.0.3" + } + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "dev": true + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "dev": true + }, + "micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "dev": true, + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true + }, + "mime-db": { + "version": "1.51.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz", + "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==", + "dev": true + }, + "mime-types": { + "version": "2.1.34", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz", + "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==", + "dev": true, + "requires": { + "mime-db": "1.51.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true, + "optional": true + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "dev": true + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "mozjpeg": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/mozjpeg/-/mozjpeg-7.1.1.tgz", + "integrity": "sha512-iIDxWvzhWvLC9mcRJ1uSkiKaj4drF58oCqK2bITm5c2Jt6cJ8qQjSSru2PCaysG+hLIinryj8mgz5ZJzOYTv1A==", + "dev": true, + "optional": true, + "requires": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dev": true, + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + } + }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", + "dev": true + }, + "nan": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", + "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", + "dev": true, + "optional": true + }, + "nanoid": { + "version": "3.1.30", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.30.tgz", + "integrity": "sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ==", + "dev": true + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", + "dev": true + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "dev": true + }, + "node-releases": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz", + "integrity": "sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==", + "dev": true + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "normalize-url": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", + "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", + "dev": true, + "optional": true, + "requires": { + "prepend-http": "^2.0.0", + "query-string": "^5.0.1", + "sort-keys": "^2.0.0" + }, + "dependencies": { + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true, + "optional": true + }, + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", + "dev": true, + "optional": true + }, + "sort-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", + "integrity": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==", + "dev": true, + "optional": true, + "requires": { + "is-plain-obj": "^1.0.0" + } + } + } + }, + "npm": { + "version": "7.24.2", + "resolved": "https://registry.npmjs.org/npm/-/npm-7.24.2.tgz", + "integrity": "sha512-120p116CE8VMMZ+hk8IAb1inCPk4Dj3VZw29/n2g6UI77urJKVYb7FZUDW8hY+EBnfsjI/2yrobBgFyzo7YpVQ==", + "requires": { + "@isaacs/string-locale-compare": "*", + "@npmcli/arborist": "*", + "@npmcli/ci-detect": "*", + "@npmcli/config": "*", + "@npmcli/map-workspaces": "*", + "@npmcli/package-json": "*", + "@npmcli/run-script": "*", + "abbrev": "*", + "ansicolors": "*", + "ansistyles": "*", + "archy": "*", + "cacache": "*", + "chalk": "*", + "chownr": "*", + "cli-columns": "*", + "cli-table3": "*", + "columnify": "*", + "fastest-levenshtein": "*", + "glob": "*", + "graceful-fs": "*", + "hosted-git-info": "*", + "ini": "*", + "init-package-json": "*", + "is-cidr": "*", + "json-parse-even-better-errors": "*", + "libnpmaccess": "*", + "libnpmdiff": "*", + "libnpmexec": "*", + "libnpmfund": "*", + "libnpmhook": "*", + "libnpmorg": "*", + "libnpmpack": "*", + "libnpmpublish": "*", + "libnpmsearch": "*", + "libnpmteam": "*", + "libnpmversion": "*", + "make-fetch-happen": "*", + "minipass": "*", + "minipass-pipeline": "*", + "mkdirp": "*", + "mkdirp-infer-owner": "*", + "ms": "*", + "node-gyp": "*", + "nopt": "*", + "npm-audit-report": "*", + "npm-install-checks": "*", + "npm-package-arg": "*", + "npm-pick-manifest": "*", + "npm-profile": "*", + "npm-registry-fetch": "*", + "npm-user-validate": "*", + "npmlog": "*", + "opener": "*", + "pacote": "*", + "parse-conflict-json": "*", + "qrcode-terminal": "*", + "read": "*", + "read-package-json": "*", + "read-package-json-fast": "*", + "readdir-scoped-modules": "*", + "rimraf": "*", + "semver": "*", + "ssri": "*", + "tar": "*", + "text-table": "*", + "tiny-relative-date": "*", + "treeverse": "*", + "validate-npm-package-name": "*", + "which": "*", + "write-file-atomic": "*" + }, + "dependencies": { + "@gar/promisify": { + "version": "1.1.2", + "bundled": true + }, + "@isaacs/string-locale-compare": { + "version": "1.1.0", + "bundled": true + }, + "@npmcli/arborist": { + "version": "2.9.0", + "bundled": true, + "requires": { + "@isaacs/string-locale-compare": "^1.0.1", + "@npmcli/installed-package-contents": "^1.0.7", + "@npmcli/map-workspaces": "^1.0.2", + "@npmcli/metavuln-calculator": "^1.1.0", + "@npmcli/move-file": "^1.1.0", + "@npmcli/name-from-folder": "^1.0.1", + "@npmcli/node-gyp": "^1.0.1", + "@npmcli/package-json": "^1.0.1", + "@npmcli/run-script": "^1.8.2", + "bin-links": "^2.2.1", + "cacache": "^15.0.3", + "common-ancestor-path": "^1.0.1", + "json-parse-even-better-errors": "^2.3.1", + "json-stringify-nice": "^1.1.4", + "mkdirp": "^1.0.4", + "mkdirp-infer-owner": "^2.0.0", + "npm-install-checks": "^4.0.0", + "npm-package-arg": "^8.1.5", + "npm-pick-manifest": "^6.1.0", + "npm-registry-fetch": "^11.0.0", + "pacote": "^11.3.5", + "parse-conflict-json": "^1.1.1", + "proc-log": "^1.0.0", + "promise-all-reject-late": "^1.0.0", + "promise-call-limit": "^1.0.1", + "read-package-json-fast": "^2.0.2", + "readdir-scoped-modules": "^1.1.0", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "ssri": "^8.0.1", + "treeverse": "^1.0.4", + "walk-up-path": "^1.0.0" + } + }, + "@npmcli/ci-detect": { + "version": "1.3.0", + "bundled": true + }, + "@npmcli/config": { + "version": "2.3.0", + "bundled": true, + "requires": { + "ini": "^2.0.0", + "mkdirp-infer-owner": "^2.0.0", + "nopt": "^5.0.0", + "semver": "^7.3.4", + "walk-up-path": "^1.0.0" + } + }, + "@npmcli/disparity-colors": { + "version": "1.0.1", + "bundled": true, + "requires": { + "ansi-styles": "^4.3.0" + } + }, + "@npmcli/fs": { + "version": "1.0.0", + "bundled": true, + "requires": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + } + }, + "@npmcli/git": { + "version": "2.1.0", + "bundled": true, + "requires": { + "@npmcli/promise-spawn": "^1.3.2", + "lru-cache": "^6.0.0", + "mkdirp": "^1.0.4", + "npm-pick-manifest": "^6.1.1", + "promise-inflight": "^1.0.1", + "promise-retry": "^2.0.1", + "semver": "^7.3.5", + "which": "^2.0.2" + } + }, + "@npmcli/installed-package-contents": { + "version": "1.0.7", + "bundled": true, + "requires": { + "npm-bundled": "^1.1.1", + "npm-normalize-package-bin": "^1.0.1" + } + }, + "@npmcli/map-workspaces": { + "version": "1.0.4", + "bundled": true, + "requires": { + "@npmcli/name-from-folder": "^1.0.1", + "glob": "^7.1.6", + "minimatch": "^3.0.4", + "read-package-json-fast": "^2.0.1" + } + }, + "@npmcli/metavuln-calculator": { + "version": "1.1.1", + "bundled": true, + "requires": { + "cacache": "^15.0.5", + "pacote": "^11.1.11", + "semver": "^7.3.2" + } + }, + "@npmcli/move-file": { + "version": "1.1.2", + "bundled": true, + "requires": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + } + }, + "@npmcli/name-from-folder": { + "version": "1.0.1", + "bundled": true + }, + "@npmcli/node-gyp": { + "version": "1.0.2", + "bundled": true + }, + "@npmcli/package-json": { + "version": "1.0.1", + "bundled": true, + "requires": { + "json-parse-even-better-errors": "^2.3.1" + } + }, + "@npmcli/promise-spawn": { + "version": "1.3.2", + "bundled": true, + "requires": { + "infer-owner": "^1.0.4" + } + }, + "@npmcli/run-script": { + "version": "1.8.6", + "bundled": true, + "requires": { + "@npmcli/node-gyp": "^1.0.2", + "@npmcli/promise-spawn": "^1.3.2", + "node-gyp": "^7.1.0", + "read-package-json-fast": "^2.0.1" + } + }, + "@tootallnate/once": { + "version": "1.1.2", + "bundled": true + }, + "abbrev": { + "version": "1.1.1", + "bundled": true + }, + "agent-base": { + "version": "6.0.2", + "bundled": true, + "requires": { + "debug": "4" + } + }, + "agentkeepalive": { + "version": "4.1.4", + "bundled": true, + "requires": { + "debug": "^4.1.0", + "depd": "^1.1.2", + "humanize-ms": "^1.2.1" + } + }, + "aggregate-error": { + "version": "3.1.0", + "bundled": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ajv": { + "version": "6.12.6", + "bundled": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-regex": { + "version": "2.1.1", + "bundled": true + }, + "ansi-styles": { + "version": "4.3.0", + "bundled": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "ansicolors": { + "version": "0.3.2", + "bundled": true + }, + "ansistyles": { + "version": "0.1.3", + "bundled": true + }, + "aproba": { + "version": "2.0.0", + "bundled": true + }, + "archy": { + "version": "1.0.0", + "bundled": true + }, + "are-we-there-yet": { + "version": "1.1.6", + "bundled": true, + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + } + }, + "asap": { + "version": "2.0.6", + "bundled": true + }, + "asn1": { + "version": "0.2.4", + "bundled": true, + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "bundled": true + }, + "asynckit": { + "version": "0.4.0", + "bundled": true + }, + "aws-sign2": { + "version": "0.7.0", + "bundled": true + }, + "aws4": { + "version": "1.11.0", + "bundled": true + }, + "balanced-match": { + "version": "1.0.2", + "bundled": true + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "bundled": true, + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "bin-links": { + "version": "2.2.1", + "bundled": true, + "requires": { + "cmd-shim": "^4.0.1", + "mkdirp": "^1.0.3", + "npm-normalize-package-bin": "^1.0.0", + "read-cmd-shim": "^2.0.0", + "rimraf": "^3.0.0", + "write-file-atomic": "^3.0.3" + } + }, + "binary-extensions": { + "version": "2.2.0", + "bundled": true + }, + "brace-expansion": { + "version": "1.1.11", + "bundled": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "builtins": { + "version": "1.0.3", + "bundled": true + }, + "cacache": { + "version": "15.3.0", + "bundled": true, + "requires": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + } + }, + "caseless": { + "version": "0.12.0", + "bundled": true + }, + "chalk": { + "version": "4.1.2", + "bundled": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "chownr": { + "version": "2.0.0", + "bundled": true + }, + "cidr-regex": { + "version": "3.1.1", + "bundled": true, + "requires": { + "ip-regex": "^4.1.0" + } + }, + "clean-stack": { + "version": "2.2.0", + "bundled": true + }, + "cli-columns": { + "version": "3.1.2", + "bundled": true, + "requires": { + "string-width": "^2.0.0", + "strip-ansi": "^3.0.1" + } + }, + "cli-table3": { + "version": "0.6.0", + "bundled": true, + "requires": { + "colors": "^1.1.2", + "object-assign": "^4.1.0", + "string-width": "^4.2.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "bundled": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "bundled": true + }, + "string-width": { + "version": "4.2.2", + "bundled": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "bundled": true, + "requires": { + "ansi-regex": "^5.0.0" + } + } + } + }, + "clone": { + "version": "1.0.4", + "bundled": true + }, + "cmd-shim": { + "version": "4.1.0", + "bundled": true, + "requires": { + "mkdirp-infer-owner": "^2.0.0" + } + }, + "code-point-at": { + "version": "1.1.0", + "bundled": true + }, + "color-convert": { + "version": "2.0.1", + "bundled": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "bundled": true + }, + "color-support": { + "version": "1.1.3", + "bundled": true + }, + "colors": { + "version": "1.4.0", + "bundled": true, + "optional": true + }, + "columnify": { + "version": "1.5.4", + "bundled": true, + "requires": { + "strip-ansi": "^3.0.0", + "wcwidth": "^1.0.0" + } + }, + "combined-stream": { + "version": "1.0.8", + "bundled": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "common-ancestor-path": { + "version": "1.0.1", + "bundled": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true + }, + "console-control-strings": { + "version": "1.1.0", + "bundled": true + }, + "core-util-is": { + "version": "1.0.2", + "bundled": true + }, + "dashdash": { + "version": "1.14.1", + "bundled": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "debug": { + "version": "4.3.2", + "bundled": true, + "requires": { + "ms": "2.1.2" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "bundled": true + } + } + }, + "debuglog": { + "version": "1.0.1", + "bundled": true + }, + "defaults": { + "version": "1.0.3", + "bundled": true, + "requires": { + "clone": "^1.0.2" + } + }, + "delayed-stream": { + "version": "1.0.0", + "bundled": true + }, + "delegates": { + "version": "1.0.0", + "bundled": true + }, + "depd": { + "version": "1.1.2", + "bundled": true + }, + "dezalgo": { + "version": "1.0.3", + "bundled": true, + "requires": { + "asap": "^2.0.0", + "wrappy": "1" + } + }, + "diff": { + "version": "5.0.0", + "bundled": true + }, + "ecc-jsbn": { + "version": "0.1.2", + "bundled": true, + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "emoji-regex": { + "version": "8.0.0", + "bundled": true + }, + "encoding": { + "version": "0.1.13", + "bundled": true, + "optional": true, + "requires": { + "iconv-lite": "^0.6.2" + } + }, + "env-paths": { + "version": "2.2.1", + "bundled": true + }, + "err-code": { + "version": "2.0.3", + "bundled": true + }, + "extend": { + "version": "3.0.2", + "bundled": true + }, + "extsprintf": { + "version": "1.3.0", + "bundled": true + }, + "fast-deep-equal": { + "version": "3.1.3", + "bundled": true + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "bundled": true + }, + "fastest-levenshtein": { + "version": "1.0.12", + "bundled": true + }, + "forever-agent": { + "version": "0.6.1", + "bundled": true + }, + "fs-minipass": { + "version": "2.1.0", + "bundled": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "fs.realpath": { + "version": "1.0.0", + "bundled": true + }, + "function-bind": { + "version": "1.1.1", + "bundled": true + }, + "gauge": { + "version": "3.0.1", + "bundled": true, + "requires": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1 || ^2.0.0", + "strip-ansi": "^3.0.1 || ^4.0.0", + "wide-align": "^1.1.2" + } + }, + "getpass": { + "version": "0.1.7", + "bundled": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "glob": { + "version": "7.2.0", + "bundled": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "graceful-fs": { + "version": "4.2.8", + "bundled": true + }, + "har-schema": { + "version": "2.0.0", + "bundled": true + }, + "har-validator": { + "version": "5.1.5", + "bundled": true, + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + } + }, + "has": { + "version": "1.0.3", + "bundled": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "4.0.0", + "bundled": true + }, + "has-unicode": { + "version": "2.0.1", + "bundled": true + }, + "hosted-git-info": { + "version": "4.0.2", + "bundled": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "http-cache-semantics": { + "version": "4.1.0", + "bundled": true + }, + "http-proxy-agent": { + "version": "4.0.1", + "bundled": true, + "requires": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + } + }, + "http-signature": { + "version": "1.2.0", + "bundled": true, + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "https-proxy-agent": { + "version": "5.0.0", + "bundled": true, + "requires": { + "agent-base": "6", + "debug": "4" + } + }, + "humanize-ms": { + "version": "1.2.1", + "bundled": true, + "requires": { + "ms": "^2.0.0" + } + }, + "iconv-lite": { + "version": "0.6.3", + "bundled": true, + "optional": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + }, + "ignore-walk": { + "version": "3.0.4", + "bundled": true, + "requires": { + "minimatch": "^3.0.4" + } + }, + "imurmurhash": { + "version": "0.1.4", + "bundled": true + }, + "indent-string": { + "version": "4.0.0", + "bundled": true + }, + "infer-owner": { + "version": "1.0.4", + "bundled": true + }, + "inflight": { + "version": "1.0.6", + "bundled": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "bundled": true + }, + "ini": { + "version": "2.0.0", + "bundled": true + }, + "init-package-json": { + "version": "2.0.5", + "bundled": true, + "requires": { + "npm-package-arg": "^8.1.5", + "promzard": "^0.3.0", + "read": "~1.0.1", + "read-package-json": "^4.1.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4", + "validate-npm-package-name": "^3.0.0" + } + }, + "ip": { + "version": "1.1.5", + "bundled": true + }, + "ip-regex": { + "version": "4.3.0", + "bundled": true + }, + "is-cidr": { + "version": "4.0.2", + "bundled": true, + "requires": { + "cidr-regex": "^3.1.1" + } + }, + "is-core-module": { + "version": "2.7.0", + "bundled": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "bundled": true + }, + "is-lambda": { + "version": "1.0.1", + "bundled": true + }, + "is-typedarray": { + "version": "1.0.0", + "bundled": true + }, + "isexe": { + "version": "2.0.0", + "bundled": true + }, + "isstream": { + "version": "0.1.2", + "bundled": true + }, + "jsbn": { + "version": "0.1.1", + "bundled": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "bundled": true + }, + "json-schema": { + "version": "0.2.3", + "bundled": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "bundled": true + }, + "json-stringify-nice": { + "version": "1.1.4", + "bundled": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "bundled": true + }, + "jsonparse": { + "version": "1.3.1", + "bundled": true + }, + "jsprim": { + "version": "1.4.1", + "bundled": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "just-diff": { + "version": "3.1.1", + "bundled": true + }, + "just-diff-apply": { + "version": "3.0.0", + "bundled": true + }, + "libnpmaccess": { + "version": "4.0.3", + "bundled": true, + "requires": { + "aproba": "^2.0.0", + "minipass": "^3.1.1", + "npm-package-arg": "^8.1.2", + "npm-registry-fetch": "^11.0.0" + } + }, + "libnpmdiff": { + "version": "2.0.4", + "bundled": true, + "requires": { + "@npmcli/disparity-colors": "^1.0.1", + "@npmcli/installed-package-contents": "^1.0.7", + "binary-extensions": "^2.2.0", + "diff": "^5.0.0", + "minimatch": "^3.0.4", + "npm-package-arg": "^8.1.4", + "pacote": "^11.3.4", + "tar": "^6.1.0" + } + }, + "libnpmexec": { + "version": "2.0.1", + "bundled": true, + "requires": { + "@npmcli/arborist": "^2.3.0", + "@npmcli/ci-detect": "^1.3.0", + "@npmcli/run-script": "^1.8.4", + "chalk": "^4.1.0", + "mkdirp-infer-owner": "^2.0.0", + "npm-package-arg": "^8.1.2", + "pacote": "^11.3.1", + "proc-log": "^1.0.0", + "read": "^1.0.7", + "read-package-json-fast": "^2.0.2", + "walk-up-path": "^1.0.0" + } + }, + "libnpmfund": { + "version": "1.1.0", + "bundled": true, + "requires": { + "@npmcli/arborist": "^2.5.0" + } + }, + "libnpmhook": { + "version": "6.0.3", + "bundled": true, + "requires": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^11.0.0" + } + }, + "libnpmorg": { + "version": "2.0.3", + "bundled": true, + "requires": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^11.0.0" + } + }, + "libnpmpack": { + "version": "2.0.1", + "bundled": true, + "requires": { + "@npmcli/run-script": "^1.8.3", + "npm-package-arg": "^8.1.0", + "pacote": "^11.2.6" + } + }, + "libnpmpublish": { + "version": "4.0.2", + "bundled": true, + "requires": { + "normalize-package-data": "^3.0.2", + "npm-package-arg": "^8.1.2", + "npm-registry-fetch": "^11.0.0", + "semver": "^7.1.3", + "ssri": "^8.0.1" + } + }, + "libnpmsearch": { + "version": "3.1.2", + "bundled": true, + "requires": { + "npm-registry-fetch": "^11.0.0" + } + }, + "libnpmteam": { + "version": "2.0.4", + "bundled": true, + "requires": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^11.0.0" + } + }, + "libnpmversion": { + "version": "1.2.1", + "bundled": true, + "requires": { + "@npmcli/git": "^2.0.7", + "@npmcli/run-script": "^1.8.4", + "json-parse-even-better-errors": "^2.3.1", + "semver": "^7.3.5", + "stringify-package": "^1.0.1" + } + }, + "lru-cache": { + "version": "6.0.0", + "bundled": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "make-fetch-happen": { + "version": "9.1.0", + "bundled": true, + "requires": { + "agentkeepalive": "^4.1.3", + "cacache": "^15.2.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^6.0.0", + "minipass": "^3.1.3", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^1.3.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.2", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^6.0.0", + "ssri": "^8.0.0" + } + }, + "mime-db": { + "version": "1.49.0", + "bundled": true + }, + "mime-types": { + "version": "2.1.32", + "bundled": true, + "requires": { + "mime-db": "1.49.0" + } + }, + "minimatch": { + "version": "3.0.4", + "bundled": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minipass": { + "version": "3.1.5", + "bundled": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "minipass-collect": { + "version": "1.0.2", + "bundled": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-fetch": { + "version": "1.4.1", + "bundled": true, + "requires": { + "encoding": "^0.1.12", + "minipass": "^3.1.0", + "minipass-sized": "^1.0.3", + "minizlib": "^2.0.0" + } + }, + "minipass-flush": { + "version": "1.0.5", + "bundled": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-json-stream": { + "version": "1.0.1", + "bundled": true, + "requires": { + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" + } + }, + "minipass-pipeline": { + "version": "1.2.4", + "bundled": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-sized": { + "version": "1.0.3", + "bundled": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minizlib": { + "version": "2.1.2", + "bundled": true, + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + } + }, + "mkdirp": { + "version": "1.0.4", + "bundled": true + }, + "mkdirp-infer-owner": { + "version": "2.0.0", + "bundled": true, + "requires": { + "chownr": "^2.0.0", + "infer-owner": "^1.0.4", + "mkdirp": "^1.0.3" + } + }, + "ms": { + "version": "2.1.3", + "bundled": true + }, + "mute-stream": { + "version": "0.0.8", + "bundled": true + }, + "negotiator": { + "version": "0.6.2", + "bundled": true + }, + "node-gyp": { + "version": "7.1.2", + "bundled": true, + "requires": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.3", + "nopt": "^5.0.0", + "npmlog": "^4.1.2", + "request": "^2.88.2", + "rimraf": "^3.0.2", + "semver": "^7.3.2", + "tar": "^6.0.2", + "which": "^2.0.2" + }, + "dependencies": { + "aproba": { + "version": "1.2.0", + "bundled": true + }, + "gauge": { + "version": "2.7.4", + "bundled": true, + "requires": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + } + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "bundled": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "npmlog": { + "version": "4.1.2", + "bundled": true, + "requires": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "bundled": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + } + } + }, + "nopt": { + "version": "5.0.0", + "bundled": true, + "requires": { + "abbrev": "1" + } + }, + "normalize-package-data": { + "version": "3.0.3", + "bundled": true, + "requires": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + } + }, + "npm-audit-report": { + "version": "2.1.5", + "bundled": true, + "requires": { + "chalk": "^4.0.0" + } + }, + "npm-bundled": { + "version": "1.1.2", + "bundled": true, + "requires": { + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-install-checks": { + "version": "4.0.0", + "bundled": true, + "requires": { + "semver": "^7.1.1" + } + }, + "npm-normalize-package-bin": { + "version": "1.0.1", + "bundled": true + }, + "npm-package-arg": { + "version": "8.1.5", + "bundled": true, + "requires": { + "hosted-git-info": "^4.0.1", + "semver": "^7.3.4", + "validate-npm-package-name": "^3.0.0" + } + }, + "npm-packlist": { + "version": "2.2.2", + "bundled": true, + "requires": { + "glob": "^7.1.6", + "ignore-walk": "^3.0.3", + "npm-bundled": "^1.1.1", + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-pick-manifest": { + "version": "6.1.1", + "bundled": true, + "requires": { + "npm-install-checks": "^4.0.0", + "npm-normalize-package-bin": "^1.0.1", + "npm-package-arg": "^8.1.2", + "semver": "^7.3.4" + } + }, + "npm-profile": { + "version": "5.0.4", + "bundled": true, + "requires": { + "npm-registry-fetch": "^11.0.0" + } + }, + "npm-registry-fetch": { + "version": "11.0.0", + "bundled": true, + "requires": { + "make-fetch-happen": "^9.0.1", + "minipass": "^3.1.3", + "minipass-fetch": "^1.3.0", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.0.0", + "npm-package-arg": "^8.0.0" + } + }, + "npm-user-validate": { + "version": "1.0.1", + "bundled": true + }, + "npmlog": { + "version": "5.0.1", + "bundled": true, + "requires": { + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" + }, + "dependencies": { + "are-we-there-yet": { + "version": "2.0.0", + "bundled": true, + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + } + } + } + }, + "number-is-nan": { + "version": "1.0.1", + "bundled": true + }, + "oauth-sign": { + "version": "0.9.0", + "bundled": true + }, + "object-assign": { + "version": "4.1.1", + "bundled": true + }, + "once": { + "version": "1.4.0", + "bundled": true, + "requires": { + "wrappy": "1" + } + }, + "opener": { + "version": "1.5.2", + "bundled": true + }, + "p-map": { + "version": "4.0.0", + "bundled": true, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "pacote": { + "version": "11.3.5", + "bundled": true, + "requires": { + "@npmcli/git": "^2.1.0", + "@npmcli/installed-package-contents": "^1.0.6", + "@npmcli/promise-spawn": "^1.2.0", + "@npmcli/run-script": "^1.8.2", + "cacache": "^15.0.5", + "chownr": "^2.0.0", + "fs-minipass": "^2.1.0", + "infer-owner": "^1.0.4", + "minipass": "^3.1.3", + "mkdirp": "^1.0.3", + "npm-package-arg": "^8.0.1", + "npm-packlist": "^2.1.4", + "npm-pick-manifest": "^6.0.0", + "npm-registry-fetch": "^11.0.0", + "promise-retry": "^2.0.1", + "read-package-json-fast": "^2.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.1.0" + } + }, + "parse-conflict-json": { + "version": "1.1.1", + "bundled": true, + "requires": { + "json-parse-even-better-errors": "^2.3.0", + "just-diff": "^3.0.1", + "just-diff-apply": "^3.0.0" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "bundled": true + }, + "performance-now": { + "version": "2.1.0", + "bundled": true + }, + "proc-log": { + "version": "1.0.0", + "bundled": true + }, + "promise-all-reject-late": { + "version": "1.0.1", + "bundled": true + }, + "promise-call-limit": { + "version": "1.0.1", + "bundled": true + }, + "promise-inflight": { + "version": "1.0.1", + "bundled": true + }, + "promise-retry": { + "version": "2.0.1", + "bundled": true, + "requires": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + } + }, + "promzard": { + "version": "0.3.0", + "bundled": true, + "requires": { + "read": "1" + } + }, + "psl": { + "version": "1.8.0", + "bundled": true + }, + "punycode": { + "version": "2.1.1", + "bundled": true + }, + "qrcode-terminal": { + "version": "0.12.0", + "bundled": true + }, + "qs": { + "version": "6.5.2", + "bundled": true + }, + "read": { + "version": "1.0.7", + "bundled": true, + "requires": { + "mute-stream": "~0.0.4" + } + }, + "read-cmd-shim": { + "version": "2.0.0", + "bundled": true + }, + "read-package-json": { + "version": "4.1.1", + "bundled": true, + "requires": { + "glob": "^7.1.1", + "json-parse-even-better-errors": "^2.3.0", + "normalize-package-data": "^3.0.0", + "npm-normalize-package-bin": "^1.0.0" + } + }, + "read-package-json-fast": { + "version": "2.0.3", + "bundled": true, + "requires": { + "json-parse-even-better-errors": "^2.3.0", + "npm-normalize-package-bin": "^1.0.1" + } + }, + "readable-stream": { + "version": "3.6.0", + "bundled": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdir-scoped-modules": { + "version": "1.1.0", + "bundled": true, + "requires": { + "debuglog": "^1.0.1", + "dezalgo": "^1.0.0", + "graceful-fs": "^4.1.2", + "once": "^1.3.0" + } + }, + "request": { + "version": "2.88.2", + "bundled": true, + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "form-data": { + "version": "2.3.3", + "bundled": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "tough-cookie": { + "version": "2.5.0", + "bundled": true, + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + } + } + }, + "retry": { + "version": "0.12.0", + "bundled": true + }, + "rimraf": { + "version": "3.0.2", + "bundled": true, + "requires": { + "glob": "^7.1.3" + } + }, + "safe-buffer": { + "version": "5.2.1", + "bundled": true + }, + "safer-buffer": { + "version": "2.1.2", + "bundled": true + }, + "semver": { + "version": "7.3.5", + "bundled": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "set-blocking": { + "version": "2.0.0", + "bundled": true + }, + "signal-exit": { + "version": "3.0.3", + "bundled": true + }, + "smart-buffer": { + "version": "4.2.0", + "bundled": true + }, + "socks": { + "version": "2.6.1", + "bundled": true, + "requires": { + "ip": "^1.1.5", + "smart-buffer": "^4.1.0" + } + }, + "socks-proxy-agent": { + "version": "6.1.0", + "bundled": true, + "requires": { + "agent-base": "^6.0.2", + "debug": "^4.3.1", + "socks": "^2.6.1" + } + }, + "spdx-correct": { + "version": "3.1.1", + "bundled": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "bundled": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "bundled": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.10", + "bundled": true + }, + "sshpk": { + "version": "1.16.1", + "bundled": true, + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "ssri": { + "version": "8.0.1", + "bundled": true, + "requires": { + "minipass": "^3.1.1" + } + }, + "string_decoder": { + "version": "1.3.0", + "bundled": true, + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "string-width": { + "version": "2.1.1", + "bundled": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "bundled": true + }, + "strip-ansi": { + "version": "4.0.0", + "bundled": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "stringify-package": { + "version": "1.0.1", + "bundled": true + }, + "strip-ansi": { + "version": "3.0.1", + "bundled": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "bundled": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "tar": { + "version": "6.1.11", + "bundled": true, + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + } + }, + "text-table": { + "version": "0.2.0", + "bundled": true + }, + "tiny-relative-date": { + "version": "1.3.0", + "bundled": true + }, + "treeverse": { + "version": "1.0.4", + "bundled": true + }, + "tunnel-agent": { + "version": "0.6.0", + "bundled": true, + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "bundled": true + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "bundled": true, + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "unique-filename": { + "version": "1.1.1", + "bundled": true, + "requires": { + "unique-slug": "^2.0.0" + } + }, + "unique-slug": { + "version": "2.0.2", + "bundled": true, + "requires": { + "imurmurhash": "^0.1.4" + } + }, + "uri-js": { + "version": "4.4.1", + "bundled": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "bundled": true + }, + "uuid": { + "version": "3.4.0", + "bundled": true + }, + "validate-npm-package-license": { + "version": "3.0.4", + "bundled": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "validate-npm-package-name": { + "version": "3.0.0", + "bundled": true, + "requires": { + "builtins": "^1.0.3" + } + }, + "verror": { + "version": "1.10.0", + "bundled": true, + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "walk-up-path": { + "version": "1.0.0", + "bundled": true + }, + "wcwidth": { + "version": "1.0.1", + "bundled": true, + "requires": { + "defaults": "^1.0.3" + } + }, + "which": { + "version": "2.0.2", + "bundled": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "wide-align": { + "version": "1.1.3", + "bundled": true, + "requires": { + "string-width": "^1.0.2 || 2" + } + }, + "wrappy": { + "version": "1.0.2", + "bundled": true + }, + "write-file-atomic": { + "version": "3.0.3", + "bundled": true, + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "yallist": { + "version": "4.0.0", + "bundled": true + } + } + }, + "npm-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", + "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", + "dev": true, + "optional": true, + "requires": { + "config-chain": "^1.1.11", + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "optional": true + } + } + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "optional": true, + "requires": { + "boolbase": "^1.0.0" + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-inspect": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", + "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==", + "dev": true + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, + "requires": { + "isobject": "^3.0.0" + } + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + }, + "object.entries": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", + "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.fromentries": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz", + "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.hasown": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.0.tgz", + "integrity": "sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "object.values": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", + "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dev": true, + "requires": { + "is-wsl": "^1.1.0" + } + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + } + }, + "optipng-bin": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/optipng-bin/-/optipng-bin-7.0.1.tgz", + "integrity": "sha512-W99mpdW7Nt2PpFiaO+74pkht7KEqkXkeRomdWXfEz3SALZ6hns81y/pm1dsGZ6ItUIfchiNIP6ORDr1zETU1jA==", + "dev": true, + "optional": true, + "requires": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.0" + } + }, + "original": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", + "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", + "dev": true, + "requires": { + "url-parse": "^1.4.3" + } + }, + "os-filter-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", + "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", + "dev": true, + "optional": true, + "requires": { + "arch": "^2.1.0" + } + }, + "ow": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/ow/-/ow-0.17.0.tgz", + "integrity": "sha512-i3keDzDQP5lWIe4oODyDFey1qVrq2hXKTuTH2VpqwpYtzPiKZt2ziRI4NBQmgW40AnV5Euz17OyWweCb+bNEQA==", + "dev": true, + "optional": true, + "requires": { + "type-fest": "^0.11.0" + }, + "dependencies": { + "type-fest": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz", + "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==", + "dev": true, + "optional": true + } + } + }, + "p-cancelable": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", + "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==", + "dev": true, + "optional": true + }, + "p-event": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-1.3.0.tgz", + "integrity": "sha512-hV1zbA7gwqPVFcapfeATaNjQ3J0NuzorHPyG8GPL9g/Y/TplWVBVoCKCXL6Ej2zscrCEv195QNWJXuBH6XZuzA==", + "dev": true, + "optional": true, + "requires": { + "p-timeout": "^1.1.1" + } + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true + }, + "p-is-promise": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", + "integrity": "sha512-zL7VE4JVS2IFSkR2GQKDSPEVxkoH43/p7oEnwpdCndKYJO0HVeRB7fA8TJwuLOTBREtK0ea8eHaxdwcpob5dmg==", + "dev": true, + "optional": true + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true + }, + "p-map-series": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz", + "integrity": "sha512-4k9LlvY6Bo/1FcIdV33wqZQES0Py+iKISU9Uc8p8AjWoZPnFKMpVIVD3s0EYn4jzLh1I+WeUZkJ0Yoa4Qfw3Kg==", + "dev": true, + "optional": true, + "requires": { + "p-reduce": "^1.0.0" + } + }, + "p-pipe": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-pipe/-/p-pipe-3.1.0.tgz", + "integrity": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==", + "dev": true + }, + "p-reduce": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", + "integrity": "sha512-3Tx1T3oM1xO/Y8Gj0sWyE78EIJZ+t+aEmXUdvQgvGmSMri7aPTHoovbXEreWKkL5j21Er60XAWLTzKbAKYOujQ==", + "dev": true, + "optional": true + }, + "p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dev": true, + "requires": { + "retry": "^0.12.0" + } + }, + "p-timeout": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz", + "integrity": "sha512-gb0ryzr+K2qFqFv6qi3khoeqMZF/+ajxQipEF6NteZVnvz9tzdsfAVj3lYtn1gAXvH5lfLwfxEII799gt/mRIA==", + "dev": true, + "optional": true, + "requires": { + "p-finally": "^1.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "dev": true + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "dev": true, + "optional": true + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "picomatch": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", + "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", + "dev": true + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + }, + "pngquant-bin": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/pngquant-bin/-/pngquant-bin-6.0.1.tgz", + "integrity": "sha512-Q3PUyolfktf+hYio6wsg3SanQzEU/v8aICg/WpzxXcuCMRb7H2Q81okfpcEztbMvw25ILjd3a87doj2N9kvbpQ==", + "dev": true, + "optional": true, + "requires": { + "bin-build": "^3.0.0", + "bin-wrapper": "^4.0.1", + "execa": "^4.0.0" + }, + "dependencies": { + "execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "dev": true, + "optional": true, + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "optional": true, + "requires": { + "pump": "^3.0.0" + } + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "dev": true, + "optional": true + } + } + }, + "popper.js": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", + "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==", + "peer": true + }, + "portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "dev": true, + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true + }, + "postcss": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.1.tgz", + "integrity": "sha512-WqLs/TTzXdG+/A4ZOOK9WDZiikrRaiA+eoEb/jz2DT9KUhMNHgP7yKPO8vwi62ZCsb703Gwb7BMZwDzI54Y2Ag==", + "dev": true, + "requires": { + "nanoid": "^3.1.30", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.1" + } + }, + "postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true, + "requires": {} + }, + "postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.4" + } + }, + "postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0" + } + }, + "postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz", + "integrity": "sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==", + "dev": true + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, + "prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==", + "dev": true, + "optional": true + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true + }, + "prop-types": { + "version": "15.7.2", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", + "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.8.1" + } + }, + "prop-types-extra": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz", + "integrity": "sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==", + "requires": { + "react-is": "^16.3.2", + "warning": "^4.0.0" + } + }, + "proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", + "dev": true, + "optional": true + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + } + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true + }, + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "dev": true, + "optional": true + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", + "dev": true + }, + "query-string": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", + "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "dev": true, + "optional": true, + "requires": { + "decode-uri-component": "^0.2.0", + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + } + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "dev": true + }, + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "dev": true, + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "dev": true + } + } + }, + "react": { + "version": "16.14.0", + "resolved": "https://registry.npmjs.org/react/-/react-16.14.0.tgz", + "integrity": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==", + "peer": true, + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2" + } + }, + "react-bootstrap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.0.2.tgz", + "integrity": "sha512-QuMqJ+WJmd6dUyOys6OF3nr6T/FjUVAoEMbSjsFrwVufJtvMox0SU1Dvz/cDID+Dl6Rz2RLcJzyqkdl+DEK2Gg==", + "requires": { + "@babel/runtime": "^7.14.0", + "@restart/context": "^2.1.4", + "@restart/hooks": "^0.3.26", + "@restart/ui": "^0.2.3", + "@types/invariant": "^2.2.33", + "@types/prop-types": "^15.7.3", + "@types/react": ">=16.14.8", + "@types/react-transition-group": "^4.4.1", + "@types/warning": "^3.0.0", + "classnames": "^2.3.1", + "dom-helpers": "^5.2.1", + "invariant": "^2.2.4", + "prop-types": "^15.7.2", + "prop-types-extra": "^1.1.0", + "react-transition-group": "^4.4.1", + "uncontrollable": "^7.2.1", + "warning": "^4.0.3" + } + }, + "react-chartjs-2": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/react-chartjs-2/-/react-chartjs-2-4.3.1.tgz", + "integrity": "sha512-5i3mjP6tU7QSn0jvb8I4hudTzHJqS8l00ORJnVwI2sYu0ihpj83Lv2YzfxunfxTZkscKvZu2F2w9LkwNBhj6xA==", + "requires": {} + }, + "react-dom": { + "version": "16.14.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.14.0.tgz", + "integrity": "sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==", + "peer": true, + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2", + "scheduler": "^0.19.1" + } + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "react-router": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.3.4.tgz", + "integrity": "sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==", + "requires": { + "@babel/runtime": "^7.12.13", + "history": "^4.9.0", + "hoist-non-react-statics": "^3.1.0", + "loose-envify": "^1.3.1", + "path-to-regexp": "^1.7.0", + "prop-types": "^15.6.2", + "react-is": "^16.6.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" + }, + "path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "requires": { + "isarray": "0.0.1" + } + } + } + }, + "react-router-dom": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.4.tgz", + "integrity": "sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==", + "requires": { + "@babel/runtime": "^7.12.13", + "history": "^4.9.0", + "loose-envify": "^1.3.1", + "prop-types": "^15.6.2", + "react-router": "5.3.4", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + } + }, + "react-transition-group": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.2.tgz", + "integrity": "sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==", + "requires": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + } + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "rechoir": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", + "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", + "dev": true, + "requires": { + "resolve": "^1.9.0" + } + }, + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "regenerate-unicode-properties": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz", + "integrity": "sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==", + "dev": true, + "requires": { + "regenerate": "^1.4.2" + } + }, + "regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + }, + "regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", + "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", + "dev": true, + "requires": { + "@babel/runtime": "^7.8.4" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", + "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true + }, + "regexpu-core": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.8.0.tgz", + "integrity": "sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==", + "dev": true, + "requires": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^9.0.0", + "regjsgen": "^0.5.2", + "regjsparser": "^0.7.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" + } + }, + "regjsgen": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", + "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==", + "dev": true + }, + "regjsparser": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.7.0.tgz", + "integrity": "sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==", + "dev": true, + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "dev": true + } + } + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + }, + "replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "dev": true + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "dev": true, + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "requires": { + "resolve-from": "^5.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true + } + } + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "resolve-pathname": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz", + "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "dev": true + }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", + "dev": true, + "optional": true, + "requires": { + "lowercase-keys": "^1.0.0" + } + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", + "dev": true + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "sass": { + "version": "1.43.5", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.43.5.tgz", + "integrity": "sha512-WuNm+eAryMgQluL7Mbq9M4EruyGGMyal7Lu58FfnRMVWxgUzIvI7aSn60iNt3kn5yZBMR7G84fAGDcwqOF5JOg==", + "dev": true, + "requires": { + "chokidar": ">=3.0.0 <4.0.0" + } + }, + "sass-loader": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-11.1.1.tgz", + "integrity": "sha512-fOCp/zLmj1V1WHDZbUbPgrZhA7HKXHEqkslzB+05U5K9SbSbcmH91C7QLW31AsXikxUMaxXRhhcqWZAxUMLDyA==", + "dev": true, + "requires": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + } + }, + "scheduler": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz", + "integrity": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==", + "peer": true, + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "seek-bzip": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz", + "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==", + "dev": true, + "optional": true, + "requires": { + "commander": "^2.8.1" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true, + "optional": true + } + } + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=", + "dev": true + }, + "selfsigned": { + "version": "1.10.11", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.11.tgz", + "integrity": "sha512-aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA==", + "dev": true, + "requires": { + "node-forge": "^0.10.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "semver-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz", + "integrity": "sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==", + "dev": true, + "optional": true + }, + "semver-truncate": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz", + "integrity": "sha512-V1fGg9i4CL3qesB6U0L6XAm4xOJiHmt4QAacazumuasc03BvtFGIMCduv01JWQ69Nv+JST9TqhSCiJoxoY031w==", + "dev": true, + "optional": true, + "requires": { + "semver": "^5.3.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "optional": true + } + } + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "dev": true + } + } + }, + "serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "dev": true, + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + } + } + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "dev": true, + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + } + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", + "dev": true + }, + "shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, + "requires": { + "kind-of": "^6.0.2" + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", + "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + } + } + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "sockjs": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz", + "integrity": "sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==", + "dev": true, + "requires": { + "faye-websocket": "^0.11.3", + "uuid": "^3.4.0", + "websocket-driver": "^0.7.4" + } + }, + "sockjs-client": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.2.tgz", + "integrity": "sha512-ZzRxPBISQE7RpzlH4tKJMQbHM9pabHluk0WBaxAQ+wm/UieeBVBou0p4wVnSQGN9QmpAZygQ0cDIypWuqOFmFQ==", + "dev": true, + "requires": { + "debug": "^3.2.6", + "eventsource": "^1.0.7", + "faye-websocket": "^0.11.3", + "inherits": "^2.0.4", + "json3": "^3.3.3", + "url-parse": "^1.5.3" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", + "dev": true, + "optional": true, + "requires": { + "is-plain-obj": "^1.0.0" + }, + "dependencies": { + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true, + "optional": true + } + } + }, + "sort-keys-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", + "integrity": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==", + "dev": true, + "optional": true, + "requires": { + "sort-keys": "^1.0.0" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "source-map-js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.1.tgz", + "integrity": "sha512-4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA==", + "dev": true + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dev": true, + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "dev": true + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + } + }, + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "dev": true, + "optional": true + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + } + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "dev": true + }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==", + "dev": true, + "optional": true + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } + } + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "string.prototype.matchall": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz", + "integrity": "sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.3.1", + "side-channel": "^1.0.4" + } + }, + "string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-dirs": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz", + "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==", + "dev": true, + "optional": true, + "requires": { + "is-natural-number": "^4.0.1" + } + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "strip-outer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "dev": true, + "optional": true, + "requires": { + "escape-string-regexp": "^1.0.2" + } + }, + "strnum": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", + "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==", + "dev": true, + "optional": true + }, + "style-loader": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-2.0.0.tgz", + "integrity": "sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "dev": true, + "optional": true, + "requires": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + } + }, + "table": { + "version": "6.7.3", + "resolved": "https://registry.npmjs.org/table/-/table-6.7.3.tgz", + "integrity": "sha512-5DkIxeA7XERBqMwJq0aHZOdMadBx4e6eDoFRuyT5VR82J0Ycg2DwM6GfA/EQAhJ+toRTaS1lIdSQCqgrmhPnlw==", + "dev": true, + "requires": { + "ajv": "^8.0.1", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "ajv": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.8.2.tgz", + "integrity": "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + } + } + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "dev": true + }, + "tar-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", + "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", + "dev": true, + "optional": true, + "requires": { + "bl": "^1.0.0", + "buffer-alloc": "^1.2.0", + "end-of-stream": "^1.0.0", + "fs-constants": "^1.0.0", + "readable-stream": "^2.3.0", + "to-buffer": "^1.1.1", + "xtend": "^4.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "optional": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "optional": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "temp-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==", + "dev": true, + "optional": true + }, + "tempfile": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz", + "integrity": "sha512-ZOn6nJUgvgC09+doCEF3oB+r3ag7kUvlsXEGX069QRD60p+P3uP7XG9N2/at+EyIRGSN//ZY3LyEotA1YpmjuA==", + "dev": true, + "optional": true, + "requires": { + "temp-dir": "^1.0.0", + "uuid": "^3.0.1" + } + }, + "terser-webpack-plugin": { + "version": "5.2.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.2.5.tgz", + "integrity": "sha512-3luOVHku5l0QBeYS8r4CdHYWEGMmIj3H1U64jgkdZzECcSOJAyJ9TjuqcQZvw1Y+4AOBN9SeYJPJmFn2cM4/2g==", + "dev": true, + "requires": { + "jest-worker": "^27.0.6", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1", + "terser": "^5.7.2" + }, + "dependencies": { + "acorn": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz", + "integrity": "sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw==", + "dev": true, + "optional": true, + "peer": true + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "terser": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.10.0.tgz", + "integrity": "sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==", + "dev": true, + "requires": { + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.20" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true + } + } + } + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true, + "optional": true + }, + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "timed-out": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==", + "dev": true, + "optional": true + }, + "tiny-invariant": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", + "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==" + }, + "tiny-warning": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + }, + "to-buffer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", + "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==", + "dev": true, + "optional": true + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", + "dev": true + }, + "trim-repeated": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==", + "dev": true, + "optional": true, + "requires": { + "escape-string-regexp": "^1.0.2" + } + }, + "ts-node": { + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-9.1.1.tgz", + "integrity": "sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==", + "dev": true, + "requires": { + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "source-map-support": "^0.5.17", + "yn": "3.1.1" + } + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "requires": { + "tslib": "^1.8.1" + } + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "dev": true, + "optional": true, + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typescript": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.2.tgz", + "integrity": "sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==", + "dev": true + }, + "unbox-primitive": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", + "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + } + }, + "unbzip2-stream": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "dev": true, + "optional": true, + "requires": { + "buffer": "^5.2.1", + "through": "^2.3.8" + } + }, + "uncontrollable": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.2.1.tgz", + "integrity": "sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==", + "requires": { + "@babel/runtime": "^7.6.3", + "@types/react": ">=16.9.11", + "invariant": "^2.2.4", + "react-lifecycles-compat": "^3.0.4" + } + }, + "unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true + }, + "unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "requires": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", + "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", + "dev": true + }, + "unicode-property-aliases-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz", + "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==", + "dev": true + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "dev": true + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true + } + } + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "dev": true + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dev": true, + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "dev": true + } + } + }, + "url-loader": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", + "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "mime-types": "^2.1.27", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "url-parse": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.3.tgz", + "integrity": "sha512-IIORyIQD9rvj0A4CLWsHkBBJuNqWpFQe224b6j9t/ABmquIS0qDU2pY6kl6AuOrL5OkCXHMCFNe1jBcuAggjvQ==", + "dev": true, + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "url-parse-lax": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", + "integrity": "sha512-BVA4lR5PIviy2PMseNd2jbFQ+jwSwQGdJejf5ctd1rEXt0Ypd7yanUK9+lYechVlN5VaTJGsu2U/3MDDu6KgBA==", + "dev": true, + "optional": true, + "requires": { + "prepend-http": "^1.0.1" + } + }, + "url-to-options": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", + "integrity": "sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==", + "dev": true, + "optional": true + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "dev": true + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "dev": true + }, + "v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, + "value-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz", + "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "dev": true + }, + "warning": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "requires": { + "loose-envify": "^1.0.0" + } + }, + "watchpack": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.3.0.tgz", + "integrity": "sha512-MnN0Q1OsvB/GGHETrFeZPQaOelWh/7O+EiFlj8sM9GPjtQkis7k01aAxrg/18kTfoIVcLL+haEVFlXDaSRwKRw==", + "dev": true, + "requires": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + } + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "requires": { + "minimalistic-assert": "^1.0.0" + } + }, + "webpack": { + "version": "5.64.4", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.64.4.tgz", + "integrity": "sha512-LWhqfKjCLoYJLKJY8wk2C3h77i8VyHowG3qYNZiIqD6D0ZS40439S/KVuc/PY48jp2yQmy0mhMknq8cys4jFMw==", + "dev": true, + "requires": { + "@types/eslint-scope": "^3.7.0", + "@types/estree": "^0.0.50", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.4.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.8.3", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.4", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.3.0", + "webpack-sources": "^3.2.2" + }, + "dependencies": { + "acorn": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz", + "integrity": "sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw==", + "dev": true + }, + "acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "dev": true, + "requires": {} + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true + } + } + }, + "webpack-cli": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.9.1.tgz", + "integrity": "sha512-JYRFVuyFpzDxMDB+v/nanUdQYcZtqFPGzmlW4s+UkPMFhSpfRNmf1z4AwYcHJVdvEFAM7FFCQdNTpsBYhDLusQ==", + "dev": true, + "requires": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^1.1.0", + "@webpack-cli/info": "^1.4.0", + "@webpack-cli/serve": "^1.6.0", + "colorette": "^2.0.14", + "commander": "^7.0.0", + "execa": "^5.0.0", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^2.2.0", + "rechoir": "^0.7.0", + "webpack-merge": "^5.7.3" + } + }, + "webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "dev": true, + "requires": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "dependencies": { + "mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "dev": true + } + } + }, + "webpack-dev-server": { + "version": "3.11.3", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.3.tgz", + "integrity": "sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==", + "dev": true, + "requires": { + "ansi-html-community": "0.0.8", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + } + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "dev": true, + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "dev": true, + "requires": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + } + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + } + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "dev": true, + "requires": { + "resolve-from": "^3.0.0" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "dev": true, + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "dev": true + } + } + }, + "webpack-merge": { + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", + "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", + "dev": true, + "requires": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + } + }, + "webpack-sources": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.2.tgz", + "integrity": "sha512-cp5qdmHnu5T8wRg2G3vZZHoJPN14aqQ89SyQ11NpGH5zEMDCclt49rzo+MaRazk7/UeILhAI+/sEtcM+7Fr0nw==", + "dev": true + }, + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + } + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true + }, + "wildcard": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", + "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", + "dev": true + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "dev": true, + "requires": { + "async-limiter": "~1.0.0" + } + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "optional": true + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "dev": true, + "optional": true, + "requires": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true + } + } +} diff --git a/webapp/package.json b/webapp/package.json new file mode 100644 index 0000000000000000000000000000000000000000..4bc546cb10b02213fc1f6f5f110047795ea1e298 --- /dev/null +++ b/webapp/package.json @@ -0,0 +1,67 @@ +{ + "name": "compendium-v2", + "version": "0.0.1", + "devDependencies": { + "@babel/core": "^7.13.10", + "@babel/plugin-transform-runtime": "^7.13.10", + "@babel/preset-env": "^7.13.10", + "@babel/preset-react": "^7.16.0", + "@babel/preset-typescript": "^7.13.0", + "@babel/runtime": "^7.13.10", + "@types/fork-ts-checker-webpack-plugin": "^0.4.5", + "@types/react": "^17.0.37", + "@types/react-dom": "^17.0.18", + "@types/webpack": "^4.41.26", + "@types/webpack-dev-server": "^3.11.2", + "@typescript-eslint/eslint-plugin": "^4.17.0", + "@typescript-eslint/parser": "^4.17.0", + "babel-loader": "^8.2.2", + "babel-plugin-transform-class-properties": "^6.24.1", + "css-loader": "^5.1.2", + "date-fns": "^2.26.0", + "eslint": "^7.22.0", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0", + "file-loader": "^6.2.0", + "fork-ts-checker-webpack-plugin": "^6.1.1", + "image-webpack-loader": "^8.1.0", + "sass": "^1.32.8", + "sass-loader": "^11.0.1", + "style-loader": "^2.0.0", + "ts-node": "^9.1.1", + "typescript": "^4.2.3", + "url-loader": "^4.1.1", + "webpack": "^5.25.0", + "webpack-cli": "^4.5.0", + "webpack-dev-server": "^3.11.2" + }, + "scripts": { + "start": "webpack serve --mode development --open --port 4000", + "build": "webpack --mode production" + }, + "dependencies": { + "@types/react-router-dom": "^5.3.3", + "bootstrap": "^4.6.0", + "chart.js": "^3.9.1", + "file-loader": "^6.2.0", + "install": "^0.13.0", + "npm": "^7.6.3", + "react-bootstrap": "^2.0.2", + "react-chartjs-2": "^4.3.1", + "react-router-dom": "^5.2.1" + }, + "description": "## development environment", + "main": "index.js", + "author": "saket.agarahari", + "license": "ISC", + "repository": { + "type": "git", + "url": "https://gitlab.geant.net/live-projects/compendium-v2.git" + }, + "keywords": [ + "promise", + "async", + "UnhandledPromiseRejectionWarning", + "PromiseRejectionHandledWarning" + ] +} diff --git a/webapp/src/About.tsx b/webapp/src/About.tsx new file mode 100644 index 0000000000000000000000000000000000000000..74182aa7ead34c22bce4cdb13ec536779faeabea --- /dev/null +++ b/webapp/src/About.tsx @@ -0,0 +1,21 @@ +import React, {ReactElement} from 'react'; +// import AnnualReport from './AnnualReport'; +// import DataAnalysis from './DataAnalysis'; +// import Navigation from './Navigation'; + + +// const api_url = window.location.origin+'/'; + +// console.log(api_url) + +function About(): ReactElement { + + return ( + + <div> + <h1>About Page</h1> + </div> + ); +} + +export default About; diff --git a/webapp/src/AnnualReport.tsx b/webapp/src/AnnualReport.tsx new file mode 100644 index 0000000000000000000000000000000000000000..23c73eabefa2cd690e720fca4243aee48fe1dc05 --- /dev/null +++ b/webapp/src/AnnualReport.tsx @@ -0,0 +1,61 @@ +import React, {useState, useEffect, ReactElement} from 'react'; +import {Nren, Service, ServiceMatrix} from "./Schema"; + + +// const api_url = window.location.origin; +// const api_url = "http://[::1]:33333"; +const api_url = "https://test-compendium01.geant.org"; + +function AnnualReport(): ReactElement { + + function api<T>(url: string, options: RequestInit): Promise<T> { + return fetch(url, options) + .then((response) => { + console.log(response) + if (!response.ok) { + return response.text().then((message) => { + console.error(`Failed to load datax: ${message}`, response.status); + throw new Error("The data could not be loaded, check the logs for details."); + }); + } + return response.json() as Promise<T>; + }) + } + + const [nrens, setNrens] = useState<Nren[]>(); + const [services, setServices] = useState<Service[][]>(); + + useEffect(() => { + // let timeoutRef = 0; + const loadData = () => { + api<ServiceMatrix>(api_url+'/service-matrix',{ + referrerPolicy: "unsafe-url", + headers: { + "Access-Control-Allow-Origin": "*", + "Content-Type": "text/plain" + } + }) + .then((serviceMatrix :ServiceMatrix)=>{ + console.log('got response==>nrens'); + console.log(serviceMatrix.nrens); + console.log('got response==>service'); + console.log(serviceMatrix.services); + + setNrens(serviceMatrix.nrens) + setServices(serviceMatrix.services) + }) + + } + loadData() + }, []); + + return ( + <div> + <h1>Annual Report</h1> + {/*{nrens?.map(nren=>(*/} + {/* <h4 key={nren.nren_id}>{nren.name}</h4>*/} + {/*))}*/} + </div> + ); +} +export default AnnualReport; diff --git a/webapp/src/App.tsx b/webapp/src/App.tsx new file mode 100644 index 0000000000000000000000000000000000000000..8abd76294b6d89bf4f5a22e1816e95b329d801de --- /dev/null +++ b/webapp/src/App.tsx @@ -0,0 +1,30 @@ +import React, {ReactElement} from 'react'; +import AnnualReport from './AnnualReport'; +import DataAnalysis from './DataAnalysis'; +import Navigation from './Navigation'; +import About from './About'; +import {BrowserRouter as Router,Switch, Route} from 'react-router-dom' + + + +// const api_url = window.location.origin+'/'; + +// console.log(api_url) + +function App(): ReactElement { + return ( + <Router> + <Navigation/> + <Switch> + <Route exact path="/about" component={About} /> + <Route exact path='/analysis' component={DataAnalysis} /> + <Route exact path="/report" component={AnnualReport} /> + <Route path="*" component={About} /> + </Switch> + + </Router> + + ); + } + +export default App; diff --git a/webapp/src/DataAnalysis.tsx b/webapp/src/DataAnalysis.tsx new file mode 100644 index 0000000000000000000000000000000000000000..9c7dc0bb5e7b188ebbb37aa11e44397e2199e17b --- /dev/null +++ b/webapp/src/DataAnalysis.tsx @@ -0,0 +1,15 @@ +import React, {ReactElement} from 'react'; + +// const api_url = window.location.origin+'/'; + +// console.log(api_url) + +function DataAnalysis(): ReactElement { + + return ( + <div> + <h1>Data Analysis</h1> + </div> + ); +} +export default DataAnalysis; diff --git a/webapp/src/Navigation.tsx b/webapp/src/Navigation.tsx new file mode 100644 index 0000000000000000000000000000000000000000..495acd16623d4e2fede18441fd38c36238a42611 --- /dev/null +++ b/webapp/src/Navigation.tsx @@ -0,0 +1,37 @@ +import React, {ReactElement} from 'react'; +import {Link} from 'react-router-dom' + +// const api_url = window.location.origin+'/'; + +// console.log(api_url) + +function Navigation(): ReactElement { + + const navStyle ={ + color: 'white' + } + + return ( + <nav className='header-naviagtion'> + <ul className='nav-links'> + <li> + <Link style={navStyle} to="/about"> + About + </Link> + </li> + <li> + <Link style={navStyle} to="/report"> + Annual Report + </Link> + </li> + <li> + <Link style={navStyle} to="/analysis"> + Data Analysis + </Link> + </li> + </ul> + </nav> + ); +} + +export default Navigation; diff --git a/webapp/src/Schema.tsx b/webapp/src/Schema.tsx new file mode 100644 index 0000000000000000000000000000000000000000..654d13120db817bdc0c51d57e02041d4b26310b5 --- /dev/null +++ b/webapp/src/Schema.tsx @@ -0,0 +1,37 @@ +export interface ServiceMatrix { + key: string, + nrens: Nren[], + services: Service[][] +} + + +export interface Nren { + name: string + nren_id:number + tags: string[] +} + + +export interface Service { + compendium_id: number, + country_code:string, + country_name:string, + created_at:Date, + id:number, + identifier:string, + kpi: string[], + nren_abbreviation:string + nren_id:number, + public:boolean, + question_id:number, + question_style:string, + response_id:number, + short:string, + status:number, + tags:string[], + title:string, + title_detailed:string, + updated_at:Date, + url:string, + value:string +} diff --git a/webapp/src/images/compendium_header.png b/webapp/src/images/compendium_header.png new file mode 100644 index 0000000000000000000000000000000000000000..3beebef46c687caf8e434d029dd2c4ce8526d0cf Binary files /dev/null and b/webapp/src/images/compendium_header.png differ diff --git a/webapp/src/images/eu_flag.png b/webapp/src/images/eu_flag.png new file mode 100644 index 0000000000000000000000000000000000000000..827ea594662512c6889020cd1d0a17bf558e6e81 Binary files /dev/null and b/webapp/src/images/eu_flag.png differ diff --git a/webapp/src/index.tsx b/webapp/src/index.tsx new file mode 100644 index 0000000000000000000000000000000000000000..9c81138bbdd1541ee5fca37d60933a430db40b8f --- /dev/null +++ b/webapp/src/index.tsx @@ -0,0 +1,7 @@ +import React from "react"; +import ReactDOM from "react-dom"; +import App from "./App"; +import './styles.scss'; + + +ReactDOM.render(<App />, document.getElementById('root')); \ No newline at end of file diff --git a/webapp/src/styles.scss b/webapp/src/styles.scss new file mode 100644 index 0000000000000000000000000000000000000000..5d084e11e4766b1594c2f8d052158dbab10ca91c --- /dev/null +++ b/webapp/src/styles.scss @@ -0,0 +1,70 @@ +table { + min-width: 650; +} + +thead { + background-color: lightgray; +} + +.state_true { + background-color: lightgreen; +} + +.state_false { + background-color: red; +} + +$border-color: #064c6e !default; +$text-color: #377592 !default; +$queue_link_hover: #ffffff !default; + +.title-background { + background-image: url("images/compendium_header.png"); + background-color: #064c6e; + vertical-align: center; + padding-bottom: 15px; + padding-bottom: 15px; +} +$footer-height: 75px !default; + +.footer-img{ + width: 55px; + height:38px +} + +.footer { + margin-top: 8px; + background-color: #064c6e; + font-size: 8px; + height:75px; + color: black; + width:100%; + padding:15px; + clear:both; +} + +.footer-text { + color: white; + margin-left: 30px; +} + +.px { + padding-left: 55px; +} + +.header-naviagtion{ + display: flex; + justify-content: space-around; + align-items: center; + min-width: 10vh; + background: #064c6e; + color: white +} + +.nav-links{ + width: 50%; + display: flex; + justify-content: space-around; + align-items: center; + list-style: none; +} \ No newline at end of file diff --git a/webapp/tsconfig.json b/webapp/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..e64e176fe41e6e2748cc1044ca3415fa9bed453d --- /dev/null +++ b/webapp/tsconfig.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "esModuleInterop": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react" + }, + "include": ["src"] +} diff --git a/webapp/webpack.config.ts b/webapp/webpack.config.ts new file mode 100644 index 0000000000000000000000000000000000000000..fe48a4268e662be07c000bbdd48e80a9732396a4 --- /dev/null +++ b/webapp/webpack.config.ts @@ -0,0 +1,95 @@ +import path from "path"; +import webpack from "webpack"; +import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin'; + +const config: webpack.Configuration = { + entry: "./src/index.tsx", + module: { + rules: [ + { + test: /\.(ts|js)x?$/, + exclude: /node_modules/, + use: { + loader: "babel-loader", + options: { + presets: [ + "@babel/preset-env", + "@babel/preset-react", + "@babel/preset-typescript", + ], + }, + }, + }, + { + test: /\.scss$/, + exclude: /node_modules/, + use: [ + { loader: 'style-loader' }, + { loader: 'css-loader' }, + { loader: 'sass-loader' }, + ] + }, + { + test: /\.css$/, + use: [ + { loader: 'style-loader' }, + { loader: 'css-loader' } + ] + }, + { + test: /\.(png|svg|jpe?g|gif)$/, + include: /images/, + use: [ + { + loader: 'file-loader', + options: { + name: '[name].[ext]', + outputPath: 'images/', + publicPath: 'images/' + } + }, + { + loader: 'image-webpack-loader', + options: { + query: { + mozjpeg: { + progressive: true, + }, + gifsicle: { + interlaced: true, + }, + optipng: { + optimizationLevel: 7, + } + } + } + }, + ] + }, + ], + }, + resolve: { + extensions: [".tsx", ".ts", ".js", ".html"], + }, + output: { + path: path.resolve(__dirname, "..", "compendium_v2", "static"), + filename: "bundle.js", + }, + devServer: { + contentBase: path.join(__dirname, "..", "compendium_v2", "static"), + compress: true, + port: 4000, + }, + plugins: [ + new ForkTsCheckerWebpackPlugin({ + async: false, + eslint: { + files: [ + "./src/**/*\.tsx", + ] + }, + }), + ], +}; + +export default config;