gitextract__2nyh35j/ ├── .babelrc ├── .dockerignore ├── .editorconfig ├── .gitignore ├── .gitlab-ci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── ENTRYNODES ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── config.ini.example ├── contrib/ │ └── ansible-playbook/ │ ├── .gitignore │ ├── README.md │ ├── group_vars/ │ │ └── all/ │ │ ├── common.yml │ │ ├── iri.yml │ │ └── nelson.yml │ ├── inventory │ ├── roles/ │ │ ├── common/ │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ └── tasks/ │ │ │ ├── firewalld.yml │ │ │ ├── install.yml │ │ │ ├── main.yml │ │ │ ├── role.yml │ │ │ ├── setup_apt.yml │ │ │ ├── setup_pip.yml │ │ │ ├── setup_yum.yml │ │ │ └── ufw.yml │ │ ├── iri/ │ │ │ ├── files/ │ │ │ │ ├── iri.service │ │ │ │ ├── nbctl │ │ │ │ ├── ps_mem │ │ │ │ └── reattach │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ ├── firewalld.yml │ │ │ │ ├── iri.yml │ │ │ │ ├── main.yml │ │ │ │ ├── role.yml │ │ │ │ └── ufw.yml │ │ │ └── templates/ │ │ │ └── iri.ini │ │ └── nelson/ │ │ ├── files/ │ │ │ └── nelson.service │ │ ├── handlers/ │ │ │ └── main.yml │ │ ├── tasks/ │ │ │ ├── firewall.yml │ │ │ ├── main.yml │ │ │ ├── nelson.yml │ │ │ └── role.yml │ │ └── templates/ │ │ └── config.ini.j2 │ └── site.yml ├── dist/ │ ├── api/ │ │ ├── index.js │ │ ├── node.js │ │ ├── peer.js │ │ ├── utils.js │ │ └── webhooks.js │ ├── index.js │ ├── nelson.js │ ├── node/ │ │ ├── __mocks__/ │ │ │ ├── iri.js │ │ │ └── node.js │ │ ├── base.js │ │ ├── guard.js │ │ ├── heart.js │ │ ├── index.js │ │ ├── iri.js │ │ ├── node.js │ │ ├── peer-list.js │ │ ├── peer.js │ │ └── tools/ │ │ ├── terminal.js │ │ └── utils.js │ └── simulation/ │ ├── bin/ │ │ ├── nelson.js │ │ └── network.js │ ├── index.js │ ├── network.js │ └── node.js ├── package.json └── src/ ├── api/ │ ├── __tests__/ │ │ ├── api-test.js │ │ ├── node-test.js │ │ ├── peer-test.js │ │ └── webhooks-test.js │ ├── index.js │ ├── node.js │ ├── peer.js │ ├── utils.js │ └── webhooks.js ├── index.js ├── nelson.js ├── node/ │ ├── __mocks__/ │ │ ├── iri.js │ │ └── node.js │ ├── __tests__/ │ │ ├── guard-test.js │ │ ├── heart-test.js │ │ ├── node-test.js │ │ ├── peer-list-test.js │ │ └── peer-test.js │ ├── base.js │ ├── guard.js │ ├── heart.js │ ├── index.js │ ├── iri.js │ ├── node.js │ ├── peer-list.js │ ├── peer.js │ └── tools/ │ ├── terminal.js │ └── utils.js └── simulation/ ├── __tests__/ │ └── node-network-integration-test.js ├── bin/ │ ├── nelson.js │ └── network.js ├── index.js ├── network.js └── node.js